8 lines
136 B
Bash
Executable file
8 lines
136 B
Bash
Executable file
#!/bin/sh
|
|
|
|
case $BLOCK_BUTTON in
|
|
4) xbacklight -inc 20 ;;
|
|
5) xbacklight -dec 20 ;;
|
|
esac
|
|
|
|
echo $(xbacklight -get | cut -d'.' -f1)%
|