PKGBUILDs/community/osdbattery/showbatt

13 lines
284 B
Text
Raw Normal View History

2009-10-10 02:15:33 +00:00
#!/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