1
0
Fork 0

a few slight fixes to the new widget

This commit is contained in:
Von Random 2016-08-12 11:38:00 +03:00
parent 9655291ae6
commit 6bf90ff000

13
rc.lua
View file

@ -57,19 +57,15 @@ function battery_status ()
end end
local battery = string.match(fd:read("*a"), "%d+") local battery = string.match(fd:read("*a"), "%d+")
io.close(fd) io.close(fd)
local state local icon
local icon = ""
if string.match(text, "Charging") then if string.match(text, "Charging") then
state = -1 icon = ""
icon = ""
elseif string.match(text, "Discharging") then elseif string.match(text, "Discharging") then
state = 1
icon = "" icon = ""
else else
stat = 0
icon = "" icon = ""
end end
return battery .. icon return ' ' .. battery .. icon
end end
-- }}} -- }}}
-- {{{ Error handling -- {{{ Error handling
@ -284,8 +280,7 @@ mytextbox:set_font('Terminus 9')
-- Battery indicator -- Battery indicator
mybattstatus = wibox.widget.textbox() mybattstatus = wibox.widget.textbox()
--mybattstatus:set_font('Terminus Bold 11') mybattstatus:set_font('Terminus Bold 11')
mybattstatus:set_font('Terminus 9')
-- Create a wibox for each screen and add it -- Create a wibox for each screen and add it
mywibox = {} mywibox = {}