refactor(Battery): ouput 'Plugged' instead of 'Charging' in the fallback

This commit is contained in:
Alex 2019-10-03 09:37:37 +01:00
parent 6d5e328928
commit 048d8d328e
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ const std::string waybar::modules::Battery::getAdapterStatus(uint8_t capacity) c
return "Full"; return "Full";
} }
if (online) { if (online) {
return "Charging"; return "Plugged";
} }
return "Discharging"; return "Discharging";
} }