Files
superior_dotfiles/private_dot_local/bin/old/executable_brightness.sh
Szymon P bc3706fd06 Add .local/bin/home_backup.sh
Add .local/bin/screenshot.sh
Update .local/bin/screenshots.sh
Add .local/bin/sekirofpsunlock
Add .local/bin/old/brightness.sh
Add .local/bin/old/change_colors.sh
Add .local/bin/old/random_wallpaper.sh
Add .local/bin/steamtinkerlaunch
2025-09-25 13:18:39 +02:00

10 lines
242 B
Bash

#!/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