Fixes
- Restore get_light(), that's still needed - Remove cut from get_light() - Add numeric value to notification - Fix erroneous removal of xbacklight -dec 10 operation
This commit is contained in:
parent
30374b3282
commit
baedeee243
@ -4,11 +4,10 @@
|
|||||||
# $./dunst-backlight.sh up
|
# $./dunst-backlight.sh up
|
||||||
# $./dunst-backlight.sh down
|
# $./dunst-backlight.sh down
|
||||||
|
|
||||||
: '
|
|
||||||
get_light() {
|
get_light() {
|
||||||
xbacklight -get | cut -f1 -d"."
|
#xbacklight -get | cut -f1 -d"."
|
||||||
|
xbacklight -get
|
||||||
}
|
}
|
||||||
'
|
|
||||||
|
|
||||||
send_notification() {
|
send_notification() {
|
||||||
light=$(get_light)
|
light=$(get_light)
|
||||||
@ -16,7 +15,7 @@ send_notification() {
|
|||||||
# https://en.wikipedia.org/wiki/Box-drawing_character
|
# https://en.wikipedia.org/wiki/Box-drawing_character
|
||||||
bar=$(seq -s "─" $(($light/ 5)) | sed 's/[0-9]//g')
|
bar=$(seq -s "─" $(($light/ 5)) | sed 's/[0-9]//g')
|
||||||
# Send the notification
|
# Send the notification
|
||||||
dunstify -i whitebalance -r 2489 -a backlight-script " $bar "
|
dunstify -i whitebalance -r 2489 -a backlight-script "$light $bar "
|
||||||
}
|
}
|
||||||
|
|
||||||
case $1 in
|
case $1 in
|
||||||
@ -31,6 +30,7 @@ case $1 in
|
|||||||
;;
|
;;
|
||||||
down)
|
down)
|
||||||
# Decrease backlight
|
# Decrease backlight
|
||||||
|
xbacklight -dec 10 > /dev/null
|
||||||
#xbacklight -dec 9% > /dev/null # legacy xorg-xbacklight
|
#xbacklight -dec 9% > /dev/null # legacy xorg-xbacklight
|
||||||
send_notification
|
send_notification
|
||||||
#backlightraw=$(xbacklight -get)
|
#backlightraw=$(xbacklight -get)
|
||||||
|
Loading…
Reference in New Issue
Block a user