mirror of
https://gitlab.com/dbrw/ansible-setup.git
synced 2025-08-04 20:45:41 +07:00
14 lines
206 B
Bash
Executable File
14 lines
206 B
Bash
Executable File
#!/usr/bin/sh
|
|
|
|
case $1 in
|
|
"up")
|
|
xbacklight -inc 5
|
|
;;
|
|
"down")
|
|
xbacklight -dec 5
|
|
;;
|
|
*)
|
|
xbacklight -get
|
|
esac
|
|
dunstify -a "Brightness" -r 88879 -u low -t 1500 $(xbacklight -get)
|