config_sway/bin/sway_brightness

22 lines
346 B
Text
Raw Normal View History

2021-01-03 13:18:37 +01:00
#!/bin/bash
2021-01-04 18:46:33 +01:00
source $HOME/.config/sway/bin/sway_helpers
2021-01-03 13:18:37 +01:00
DEVICE=sysfs/backlight/intel_backlight
APP=light
## main
_log BRIGHTNESS INFO args: $*
_check_app $APP
2021-01-03 13:18:37 +01:00
case $1 in
d*)
light -s $DEVICE -U 10
;;
i*)
light -s $DEVICE -A 10
;;
*)
echo "invalid argument: \"$1\""
echo "arguments: [decrease|increase]"
2021-01-03 13:18:37 +01:00
;;
esac