diff options
Diffstat (limited to 'tools/panel/batterymon')
-rwxr-xr-x | tools/panel/batterymon | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tools/panel/batterymon b/tools/panel/batterymon deleted file mode 100755 index 19a4d5a..0000000 --- a/tools/panel/batterymon +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -while true;do -if [ `battery -f '%i'` -lt 5 ] && ! [ -z ~/.dontshut ]; then -touch ~/.dontshut -zenity --question --title "Battery" --text "Battery if pretty fucking low, go to sleep?" -if [ $? -ne 1 ];then -pm-suspend -fi -else -rm ~/.dontshut -fi -sleep 30; -done |