aboutsummaryrefslogtreecommitdiff
path: root/configs/xmobar_bat_msi.sh
blob: cdaee430d8af353be4a401a9b8516f9accbc9db0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

echo -n "BAT:"
OUT=$(acpi -b | sed -n 's/Battery 0:\(.*\), \(.*\)%\(.*\)/\2/p')

if [ $OUT -lt 10 ]; then
	echo "<fc=#FF0000>$OUT</fc>%"
elif [ $OUT -lt 50 ]; then
	echo "<fc=#FFFF00>$OUT</fc>%"
elif [ $OUT -lt 80 ]; then
	echo "<fc=#00FF00>$OUT</fc>%"
else
	echo "$OUT%"
fi