a few slight fixes to the new widget
This commit is contained in:
parent
9655291ae6
commit
6bf90ff000
1 changed files with 4 additions and 9 deletions
13
rc.lua
13
rc.lua
|
@ -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 = {}
|
||||||
|
|
Loading…
Reference in a new issue