Add dunst config

This commit is contained in:
olari
2018-08-01 02:01:42 +03:00
parent 0be345294c
commit a3d0f85ee5
4 changed files with 56 additions and 9 deletions

View File

@@ -9,14 +9,14 @@ case $1 in
[[ $current_backlight -gt 100 ]] && current_backlight=100
xbacklight -set $current_backlight
notify-send $current_backlight
notify-send -t 250 "BL: $current_backlight"
;;
"lower")
(( current_backlight -= 5 ))
[[ $current_backlight -lt 5 ]] && current_backlight=1
xbacklight -set $current_backlight
notify-send $current_backlight
notify-send -t 250 "BL: $current_backlight"
;;
esac