Add scripts
This commit is contained in:
22
scripts/backlight.sh
Executable file
22
scripts/backlight.sh
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
|
||||
backlight_float=$(xbacklight -get)
|
||||
current_backlight=${backlight_float%%.*}
|
||||
|
||||
case $1 in
|
||||
"raise")
|
||||
(( current_backlight += 5 ))
|
||||
[[ $current_backlight -gt 100 ]] && current_backlight=100
|
||||
|
||||
xbacklight -set $current_backlight
|
||||
notify-send $current_backlight
|
||||
;;
|
||||
"lower")
|
||||
(( current_backlight -= 5 ))
|
||||
[[ $current_backlight -lt 5 ]] && current_backlight=1
|
||||
|
||||
xbacklight -set $current_backlight
|
||||
notify-send $current_backlight
|
||||
;;
|
||||
esac
|
||||
|
||||
Reference in New Issue
Block a user