summaryrefslogtreecommitdiffstats
path: root/makefu/1systems/x/x13/toggle_brightness
diff options
context:
space:
mode:
Diffstat (limited to 'makefu/1systems/x/x13/toggle_brightness')
-rw-r--r--makefu/1systems/x/x13/toggle_brightness8
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 00000000..dc1436cb
--- /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