mirror of
https://github.com/pgrondek/config.git
synced 2024-11-22 12:03:43 +00:00
[i3] Fix brightness block
This commit is contained in:
parent
cf27918714
commit
f6aedd07d5
@ -1,14 +1,23 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
output=eDP-1
|
output=eDP-1
|
||||||
brightness=$(xrandr --verbose | grep Brightness | awk '{printf "%d", $2*100}')
|
brightness=?
|
||||||
|
|
||||||
|
get_brighntess() {
|
||||||
|
brightness=$(xrandr --verbose | grep Brightness | awk '{printf "%d", $2*100}')
|
||||||
|
}
|
||||||
|
|
||||||
|
print_bringtness() {
|
||||||
|
get_brighntess
|
||||||
echo $brightness
|
echo $brightness
|
||||||
|
}
|
||||||
|
|
||||||
set_brightness() {
|
set_brightness() {
|
||||||
xrandr --output $output --brightness $(echo $1 | awk '{printf "%0.2f", $1/100}' )
|
xrandr --output $output --brightness $(echo $1 | awk '{printf "%0.2f", $1/100}' )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get_brighntess
|
||||||
|
|
||||||
case $BLOCK_BUTTON in
|
case $BLOCK_BUTTON in
|
||||||
4) set_brightness $((brightness + 10 ))
|
4) set_brightness $((brightness + 10 ))
|
||||||
;; # scroll up
|
;; # scroll up
|
||||||
@ -16,3 +25,5 @@ case $BLOCK_BUTTON in
|
|||||||
5) set_brightness $((brightness - 10 ))
|
5) set_brightness $((brightness - 10 ))
|
||||||
;; # scroll down
|
;; # scroll down
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
print_bringtness
|
||||||
|
Loading…
Reference in New Issue
Block a user