mirror of
https://github.com/elenapan/dotfiles.git
synced 2026-01-28 03:07:12 +08:00
11 lines
198 B
Bash
Executable file
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
|