diff options
Diffstat (limited to 'community/osdbattery/showbatt')
-rw-r--r-- | community/osdbattery/showbatt | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/community/osdbattery/showbatt b/community/osdbattery/showbatt deleted file mode 100644 index 440de592c..000000000 --- a/community/osdbattery/showbatt +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -# osdbattery start/stop script - best bound to a keyboard combo - -PID=`pidof -o %PPID /usr/bin/osdbattery` -if [ -z "$PID" ] ; then - /usr/bin/osdbattery & - echo $PID > /var/run/osdbattery.pid -elif [ ! -z "$PID" ] ; then - kill $PID &> /dev/null - rm /var/run/osdbattery.pid -fi |