1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2024-10-22 20:41:22 +00:00

Merge pull request #243 from MisterDA/patch-1

Show battery percentage even when on sector
This commit is contained in:
Luca CPZ 2018-10-16 16:31:34 +01:00 committed by GitHub
commit f39710c2af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -207,9 +207,7 @@ local bat = lain.widget.bat({
settings = function() settings = function()
if bat_now.status and bat_now.status ~= "N/A" then if bat_now.status and bat_now.status ~= "N/A" then
if bat_now.ac_status == 1 then if bat_now.ac_status == 1 then
widget:set_markup(markup.font(theme.font, " AC "))
baticon:set_image(theme.widget_ac) baticon:set_image(theme.widget_ac)
return
elseif not bat_now.perc and tonumber(bat_now.perc) <= 5 then elseif not bat_now.perc and tonumber(bat_now.perc) <= 5 then
baticon:set_image(theme.widget_battery_empty) baticon:set_image(theme.widget_battery_empty)
elseif not bat_now.perc and tonumber(bat_now.perc) <= 15 then elseif not bat_now.perc and tonumber(bat_now.perc) <= 15 then