From 9fe823062a86f2cb8c77311f3f131c926aa22233 Mon Sep 17 00:00:00 2001 From: Ryan Kavanagh Date: Thu, 25 Aug 2011 07:26:12 -0400 Subject: Battery script now uses acpi -b --- .dzen/battery.sh | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/.dzen/battery.sh b/.dzen/battery.sh index 9e67834..5f56332 100755 --- a/.dzen/battery.sh +++ b/.dzen/battery.sh @@ -28,24 +28,21 @@ TIME_INT=30 # time intervall in seconds PREBAR='^i(/home/ryan/.dzen/icons/power-bat.xbm) ' # caption (also icons are possible) while true; do - # look up battery's data - PRESENT=`cat $STATEFILE|grep POWER_SUPPLY_PRESENT|cut -d '=' -f 2`; - if [ $PRESENT = '1' ]; then + PRESENT=`acpi -b`; + if [ "${PRESENT}" ]; then BAT_FULL=`cat $STATEFILE|grep POWER_SUPPLY_CHARGE_FULL_DESIGN | cut -d '=' -f 2 `; - STATUS=`cat $STATEFILE|grep POWER_SUPPLY_STATUS |cut -d '=' -f 2`; - RCAP=`cat $STATEFILE|grep POWER_SUPPLY_CHARGE_NOW|cut -d '=' -f 2`; + STATUS=`echo ${PRESENT} | grep Charging`; - echo $BAT_FULL " " $STATUS " " $RCAP > /dev/stdout - - # calculate remaining power - RPERCT=`expr $RCAP \* 100`; - RPERC=`expr $RPERCT / $BAT_FULL`; +# echo $BAT_FULL " " $STATUS " " $RCAP > /dev/stdout + + RPERC=`echo ${PRESENT} | cut -d, -f2 | sed -e 's/[^0-9]//g'`; + echo ${RPERC} > /tmp/rperc # draw the bar and pipe everything into dzen if [ $RPERC -le $LOWBAT ]; then GFG=$LOWCOL; fi - if [ $STATUS = 'Charging' ]; then + if [ "${STATUS}" ]; then GFG=$CHGCOL; else GFG='#33ccff'; -- cgit v1.2.3