mirror of
https://github.com/GRFreire/dotfiles.git
synced 2026-07-05 00:09:39 +00:00
7 lines
136 B
Bash
Executable File
7 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
|
|
inotifywait -m -q -e modify /sys/class/backlight/intel_backlight/brightness |
|
|
while read -r; do
|
|
./brightness_pct.sh
|
|
done
|