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, 0 insertions, 8 deletions
diff --git a/makefu/1systems/x/x13/toggle_brightness b/makefu/1systems/x/x13/toggle_brightness
deleted file mode 100644
index dc1436cb..00000000
--- a/makefu/1systems/x/x13/toggle_brightness
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/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