X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/4cd8db012cd7dfa9cb579992abead39aaf8a63b0..cf1bb42a83dcb9687db47a9a1eacf1ce087f76ff:/widgets/calendar.lua?ds=sidebyside diff --git a/widgets/calendar.lua b/widgets/calendar.lua index 60d0997..4e6eda7 100644 --- a/widgets/calendar.lua +++ b/widgets/calendar.lua @@ -45,7 +45,7 @@ function calendar:show(t_out, inc_offset) then -- current month showing, today highlighted if today >= 10 then - init_t = calendar.cal .. ' | sed -r -e "s/(^| )(' + init_t = calendar.cal .. ' | sed -r -e "s/_\\x08//g" | sed -r -e "s/(^| )(' end calendar.offset = 0 @@ -98,7 +98,8 @@ function calendar:show(t_out, inc_offset) position = calendar.position, fg = calendar.fg, bg = calendar.bg, - timeout = tims + timeout = tims, + screen = client.focus and client.focus.screen or 1 }) end @@ -121,7 +122,11 @@ function calendar:attach(widget, args) widget:buttons(awful.util.table.join( awful.button({ }, 1, function () calendar:show(0, -1) end), awful.button({ }, 3, function () - calendar:show(0, 1) end) )) + calendar:show(0, 1) end), + awful.button({ }, 4, function () + calendar:show(0, -1) end), + awful.button({ }, 5, function () + calendar:show(0, 1) end))) end return setmetatable(calendar, { __call = function(_, ...) return create(...) end })