16 lines
375 B
Bash
Executable File
16 lines
375 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
case $1 in
|
|
"up"*)
|
|
xbacklight -inc 10 &
|
|
currentBrightness=$(xbacklight | cut -d\. -f1);
|
|
dunstify -r 1 'brightness up'\ \($currentBrightness%\);
|
|
;;
|
|
"down"*)
|
|
xbacklight -dec 10 &
|
|
currentBrightness=$(xbacklight | cut -d\. -f1);
|
|
dunstify -r 1 'brightness down'\ \($currentBrightness%\);
|
|
;;
|
|
esac
|