Abaixo está um widget textclock.lua
atualizado que responde às alterações de fuso horário no tempo de execução. Eu substitui o arquivo /usr/share/awesome/lib/awful/widget/textclock.lua
. Eu também instalei o módulo luatz
do repositório do github e movi a pasta luatz
para /usr/share/lua/5.2/luatz
para que o% co_de A função% lua
encontra-a automaticamente.
/usr/share/awesome/lib/awful/widget/textclock.lua:
local setmetatable = setmetatable
local os = os
local textbox = require("wibox.widget.textbox")
local capi = { timer = timer }
local luatz = require("luatz")
local tzcache = require("luatz.tzcache")
--- Text clock widget.
-- awful.widget.textclock
local textclock = { mt = {} }
--- Create a textclock widget. It draws the time it is in a textbox.
-- @param format The time format. Default is " %a %b %d, %H:%M ".
-- @param timeout How often update the time. Default is 60.
-- @return A textbox widget.
function textclock.new(format, timeout)
local format = format or " %a %b %d, %H:%M "
local timeout = timeout or 60
local w = textbox()
local timer = capi.timer { timeout = timeout }
timer:connect_signal("timeout", function()
tzcache.clear_tz_cache()
w:set_markup(os.date("!"..format, luatz.time_in()))
end)
timer:start()
timer:emit_signal("timeout")
return w
end
function textclock.mt:__call(...)
return textclock.new(...)
end
return setmetatable(textclock, textclock.mt)