All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
4 Licensed under GNU General Public License v2
5 * (c) 2013, Luke Bonham
9 local async = require("lain.helpers").async
10 local icons_dir = require("lain.helpers").icons_dir
11 local markup = require("lain.util.markup")
12 local awful = require("awful")
13 local naughty = require("naughty")
14 local os = { date = os.date }
15 local string = { format = string.format,
17 local tonumber = tonumber
19 -- Calendar notification
20 -- lain.widgets.calendar
21 local calendar = { offset = 0 }
23 function calendar.hide()
24 if not calendar.notification then return end
25 naughty.destroy(calendar.notification)
26 calendar.notification = nil
29 function calendar.show(t_out, inc_offset, scr)
32 local today = os.date("%d")
33 local offs = inc_offset or 0
36 calendar.offset = calendar.offset + offs
38 local current_month = (offs == 0 or calendar.offset == 0)
40 if current_month then -- today highlighted
42 calendar.notify_icon = string.format("%s%s.png", calendar.icons, today)
44 else -- no current month showing, no day to highlight
45 local month = tonumber(os.date("%m"))
46 local year = tonumber(os.date("%Y"))
48 month = month + calendar.offset
60 calendar.notify_icon = nil
61 f = string.format("%s %s %s", calendar.cal, month, year)
64 if calendar.followtag then
65 calendar.notification_preset.screen = awful.screen.focused()
67 calendar.notification_preset.screen = src or 1
71 fg, bg = calendar.notification_preset.fg, calendar.notification_preset.bg
72 ws = ws:gsub("%c%[7m%d+%c%[27m", markup.bold(markup.color(bg, fg, today)))
73 calendar.notification = naughty.notify({
74 preset = calendar.notification_preset,
75 text = ws:gsub("\n*$", ""),
76 icon = calendar.notify_icon,
77 timeout = t_out or calendar.notification.preset.timeout or 5
82 function calendar.attach(widget, args)
83 local args = args or {}
84 calendar.cal = args.cal or "/usr/bin/cal --color=always"
85 calendar.followtag = args.followtag or false
86 calendar.icons = args.icons or icons_dir .. "cal/white/"
87 calendar.notification_preset = args.notification_preset
89 if not calendar.notification_preset then
90 calendar.notification_preset = naughty.config.defaults
91 calendar.notification_preset.font = "Monospace 10"
92 calendar.notification_preset.fg = "#FFFFFF"
93 calendar.notification_preset.bg = "#000000"
97 widget:connect_signal("mouse::enter", function () calendar.show(0) end)
98 widget:connect_signal("mouse::leave", function () calendar.hide() end)
99 widget:buttons(awful.util.table.join(awful.button({ }, 1, function ()
100 calendar.show(0, -1, calendar.scr_pos) end),
101 awful.button({ }, 3, function ()
102 calendar.show(0, 1, calendar.scr_pos) end),
103 awful.button({ }, 4, function ()
104 calendar.show(0, -1, calendar.scr_pos) end),
105 awful.button({ }, 5, function ()
106 calendar.show(0, 1, calendar.scr_pos) end)))