diff --git a/themes/atomic/atomic.theme.bash b/themes/atomic/atomic.theme.bash index 8ac18dfd..4e58f014 100644 --- a/themes/atomic/atomic.theme.bash +++ b/themes/atomic/atomic.theme.bash @@ -178,7 +178,7 @@ ___atomic_prompt_battery() { ac_adapter_disconnected && info="-" ac_adapter_connected && info="+" info+=$batp - [ "$info" == "+100" ] && info="AC" + [ "$batp" -eq 100 ] || [ "$batp" -gt 100 ] && info="AC" printf "%s|%s|%s|%s" "${color}" "${info}" "${bold_white}" "${box}" }