config_sway/bin/brightness

22 lines
341 B
Text
Raw Normal View History

2021-01-03 13:18:37 +01:00
#!/bin/bash
source $HOME/.config/sway/bin/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