This commit is contained in:
2026-02-20 01:01:27 +01:00
parent 3e7d82524f
commit d0d1327e9f
17 changed files with 671 additions and 0 deletions

9
scripts/old/brightness.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/bash
if [[ $1 == "up" ]]; then
ddcutil -d 1 setvcp 10 100 && ddcutil -d 2 setvcp 10 100
elif [[ $1 == "down" ]]; then
ddcutil -d 1 setvcp 10 30 && ddcutil -d 2 setvcp 10 0
else
echo "Usage: brightness.sh [up/down]"
fi