diff options
Diffstat (limited to 'makefu/1systems/x/x13/toggle_brightness')
-rw-r--r-- | makefu/1systems/x/x13/toggle_brightness | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/makefu/1systems/x/x13/toggle_brightness b/makefu/1systems/x/x13/toggle_brightness new file mode 100644 index 000000000..dc1436cb6 --- /dev/null +++ b/makefu/1systems/x/x13/toggle_brightness @@ -0,0 +1,8 @@ +#!/bin/sh +proc=/proc/acpi/ibm/lcdshadow +status=$(awk '/status:/{print $2}' "$proc") +if [ "$status" -eq 0 ];then + echo 1 > "$proc" +else + echo 0 > "$proc" +fi |