1
0
mirror of https://github.com/pgrondek/config.git synced 2024-11-22 20:13:43 +00:00
config/i3/i3blocks/blocks/brightness

26 lines
477 B
Plaintext
Raw Normal View History

2019-05-28 12:01:09 +00:00
#!/usr/bin/env bash
output=eDP-1
2019-11-07 09:41:13 +00:00
brightness=?
2019-05-28 12:01:09 +00:00
2019-11-07 09:41:13 +00:00
get_brighntess() {
brightness=$(xrandr --verbose | grep Brightness | awk '{printf "%d", $2*100}')
}
2019-05-28 12:01:09 +00:00
set_brightness() {
xrandr --output $output --brightness $(echo $1 | awk '{printf "%0.2f", $1/100}' )
2019-11-12 07:33:44 +00:00
brightness=$1
2019-05-28 12:01:09 +00:00
}
2019-11-07 09:41:13 +00:00
get_brighntess
2019-05-28 12:01:09 +00:00
case $BLOCK_BUTTON in
4) set_brightness $((brightness + 10 ))
;; # scroll up
5) set_brightness $((brightness - 10 ))
;; # scroll down
esac
2019-11-07 09:41:13 +00:00
2019-11-12 07:33:44 +00:00
echo $brightness