fix error when bat value is nil

This commit is contained in:
maben 2016-12-30 16:49:48 +08:00
parent 4495f07b4e
commit f83f100ca5
1 changed files with 6 additions and 6 deletions

View File

@ -1,8 +1,8 @@
--[[
Powerarrow Darker Awesome WM config 2.0
github.com/copycat-killer
Powerarrow Darker Awesome WM config 2.0
github.com/copycat-killer
--]]
-- {{{ Required libraries
@ -216,9 +216,9 @@ batwidget = lain.widgets.bat({
widget:set_markup(" AC ")
baticon:set_image(beautiful.widget_ac)
return
elseif tonumber(bat_now.perc) <= 5 then
elseif not bat_now.perc and tonumber(bat_now.perc) <= 5 then
baticon:set_image(beautiful.widget_battery_empty)
elseif tonumber(bat_now.perc) <= 15 then
elseif not bat_now.perc and tonumber(bat_now.perc) <= 15 then
baticon:set_image(beautiful.widget_battery_low)
else
baticon:set_image(beautiful.widget_battery)