mirror of
https://github.com/szymon-jozef/superior_dotfiles.git
synced 2026-09-07 20:20:38 +02:00
Change attributes of .local/bin/change_colors.sh Change attributes of .local/bin/change_wallpaper.sh Change attributes of .local/bin/check-do-not-disturb.sh Change attributes of .local/bin/check-if-muted.sh Change attributes of .local/bin/home_backup.sh Change attributes of .local/bin/random_wallpaper.sh Change attributes of .local/bin/restart_waybar.sh Change attributes of .local/bin/screenshot.sh Change attributes of .local/bin/screenshots.sh Change attributes of .local/bin/sekirofpsunlock Change attributes of .local/bin/start_coding.sh Change attributes of .local/bin/system_setup.sh Change attributes of .local/bin/wp-vol.sh Change attributes of .local/bin/old/brightness.sh Change attributes of .local/bin/old/change_colors.sh Change attributes of .local/bin/old/random_wallpaper.sh Change attributes of .local/bin/old/screenshots_overcomplified.sh Change attributes of .local/bin/steamtinkerlaunch
10 lines
242 B
Bash
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
|