summaryrefslogtreecommitdiff
path: root/etc/functions/check_ac
diff options
context:
space:
mode:
Diffstat (limited to 'etc/functions/check_ac')
-rw-r--r--etc/functions/check_ac8
1 files changed, 0 insertions, 8 deletions
diff --git a/etc/functions/check_ac b/etc/functions/check_ac
deleted file mode 100644
index d97d7da..0000000
--- a/etc/functions/check_ac
+++ /dev/null
@@ -1,8 +0,0 @@
-## vim:ft=zsh
-## check_ac - returns true if machine is running on AC
-typeset file=/sys/class/power_supply/AC/online
-if [[ -f $file ]] {
- [[ $(cat $file) == 1 ]]
- return $?
-}
-return 0