mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
11 lines
174 B
Bash
Executable File
11 lines
174 B
Bash
Executable File
#!/bin/sh
|
|
|
|
icon="🔆"
|
|
|
|
case $BLOCK_BUTTON in
|
|
4) xbacklight -inc 4 ;;
|
|
5) xbacklight -dec 4 ;;
|
|
esac
|
|
|
|
printf "%s %s%%\\n" "$icon" "$(echo "$(xbacklight -get)*100/100" | bc)"
|