elenapan/config/eww/scripts/daemons/brightness.sh
2024-12-14 01:41:23 +02:00

11 lines
198 B
Bash
Executable file

#!/bin/sh
update() {
eww update brightness=$(light -G)
}
update
if [ "$1" == "oneshot" ]; then
exit
fi
while (inotifywait -e modify /sys/class/backlight/?*/brightness -qq) do update; done