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
|
2021-01-04 18:27:42 +01:00
|
|
|
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
|
|
|
|
;;
|
|
|
|
*)
|
2021-01-04 18:27:42 +01:00
|
|
|
echo "invalid argument: \"$1\""
|
|
|
|
echo "arguments: [decrease|increase]"
|
2021-01-03 13:18:37 +01:00
|
|
|
;;
|
|
|
|
esac
|