awesomerc: change default time to be human readable

This will also reduce awesome wake up by only printing minutes.

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-02-23 13:43:13 +01:00
parent 46144588f5
commit 2a45cd556f
1 changed files with 3 additions and 6 deletions

View File

@ -408,11 +408,8 @@ awful.hooks.arrange.register(function (screen)
end
end)
-- Hook called every second
awful.hooks.timer.register(1, function ()
-- For unix time_t lovers
mytextbox.text = " " .. os.time() .. " time_t "
-- Otherwise use:
-- mytextbox.text = " " .. os.date() .. " "
-- Hook called every minute
awful.hooks.timer.register(60, function ()
mytextbox.text = os.date(" %a %b %d, %H:%M ")
end)
-- }}}