Fix battery script
This commit is contained in:
parent
f6882c909c
commit
e903d0723e
@ -13,12 +13,12 @@
|
|||||||
STATE="$(echo "$INFO" | grep 'state:' | tr -s ' ' | cut -d' ' -f3)"
|
STATE="$(echo "$INFO" | grep 'state:' | tr -s ' ' | cut -d' ' -f3)"
|
||||||
if [[ "x$STATE" == "xfully-charged" ]] || [[ "x$STATE" == "xcharging" ]]; then
|
if [[ "x$STATE" == "xfully-charged" ]] || [[ "x$STATE" == "xcharging" ]]; then
|
||||||
case $PERCENTAGE in
|
case $PERCENTAGE in
|
||||||
[2-3]*) icon=;;
|
[0-9]|1[0-9]) icon=;;
|
||||||
[4-5]*) icon=;;
|
[2-3][0-9]) icon=;;
|
||||||
[6-7]*) icon=;;
|
[4-5][0-9]) icon=;;
|
||||||
[8-9]*) icon=;;
|
[6-7][0-9]) icon=;;
|
||||||
|
[8-9][0-9]) icon=;;
|
||||||
100) icon=;;
|
100) icon=;;
|
||||||
*) icon=;;
|
|
||||||
esac
|
esac
|
||||||
else
|
else
|
||||||
if [[ "$PERCENTAGE" -lt ${toString low_threshold} ]]; then
|
if [[ "$PERCENTAGE" -lt ${toString low_threshold} ]]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user