Change to one-line if statement
This commit is contained in:
parent
6dbdaa4a63
commit
da251b8bc9
5
neofetch
5
neofetch
|
@ -1710,10 +1710,7 @@ get_battery() {
|
||||||
"Mac OS X")
|
"Mac OS X")
|
||||||
battery="$(pmset -g batt | grep -o '[0-9]*%')"
|
battery="$(pmset -g batt | grep -o '[0-9]*%')"
|
||||||
state="$(pmset -g batt | awk '/;/ {print $4}')"
|
state="$(pmset -g batt | awk '/;/ {print $4}')"
|
||||||
if [ "$state" == "charging;" ];
|
[[ "$state" == "charging;" ]] && battery_state="charging"
|
||||||
then
|
|
||||||
battery_state="charging"
|
|
||||||
fi
|
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"Windows")
|
"Windows")
|
||||||
|
|
Reference in New Issue