summaryrefslogtreecommitdiff
path: root/community/acpid/handler.sh
diff options
context:
space:
mode:
Diffstat (limited to 'community/acpid/handler.sh')
-rw-r--r--community/acpid/handler.sh77
1 files changed, 0 insertions, 77 deletions
diff --git a/community/acpid/handler.sh b/community/acpid/handler.sh
deleted file mode 100644
index bab144d03..000000000
--- a/community/acpid/handler.sh
+++ /dev/null
@@ -1,77 +0,0 @@
-#!/bin/bash
-# Default acpi script that takes an entry for all actions
-
-case "$1" in
- button/power)
- case "$2" in
- PBTN|PWRF)
- logger 'PowerButton pressed'
- ;;
- *)
- logger "ACPI action undefined: $2"
- ;;
- esac
- ;;
- button/sleep)
- case "$2" in
- SLPB|SBTN)
- logger 'SleepButton pressed'
- ;;
- *)
- logger "ACPI action undefined: $2"
- ;;
- esac
- ;;
- ac_adapter)
- case "$2" in
- AC|ACAD|ADP0)
- case "$4" in
- 00000000)
- logger 'AC unpluged'
- ;;
- 00000001)
- logger 'AC pluged'
- ;;
- esac
- ;;
- *)
- logger "ACPI action undefined: $2"
- ;;
- esac
- ;;
- battery)
- case "$2" in
- BAT0)
- case "$4" in
- 00000000)
- logger 'Battery online'
- ;;
- 00000001)
- logger 'Battery offline'
- ;;
- esac
- ;;
- CPU0)
- ;;
- *) logger "ACPI action undefined: $2" ;;
- esac
- ;;
- button/lid)
- case "$3" in
- close)
- logger 'LID closed'
- ;;
- open)
- logger 'LID opened'
- ;;
- *)
- logger "ACPI action undefined: $3"
- ;;
- esac
- ;;
- *)
- logger "ACPI group/action undefined: $1 / $2"
- ;;
-esac
-
-# vim:set ts=4 sw=4 ft=sh et: