aboutsummaryrefslogtreecommitdiffstats
path: root/xorg/.local/usr/bin
diff options
context:
space:
mode:
Diffstat (limited to 'xorg/.local/usr/bin')
-rwxr-xr-xxorg/.local/usr/bin/xbacklightmon4
1 files changed, 2 insertions, 2 deletions
diff --git a/xorg/.local/usr/bin/xbacklightmon b/xorg/.local/usr/bin/xbacklightmon
index 39f6b48..f5b46c0 100755
--- a/xorg/.local/usr/bin/xbacklightmon
+++ b/xorg/.local/usr/bin/xbacklightmon
@@ -10,8 +10,8 @@ luminance() {
10 10
11read -r max < "$path"/max_brightness 11read -r max < "$path"/max_brightness
12 12
13xbacklight -set "$(luminance)" 13echo xbacklight -set "$(luminance)"
14 14
15inotifywait -me modify --format '' "$path"/actual_brightness | while read; do 15inotifywait -me modify --format '' "$path"/actual_brightness | while read; do
16 xbacklight -set "$(luminance)" 16 echo xbacklight -set "$(luminance)"
17done 17done