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
9 local icons_dir = require("lain.helpers").icons_dir
11 local awful = require("awful")
12 local beautiful = require("beautiful")
13 local naughty = require("naughty")
16 local tonumber = tonumber
18 local setmetatable = setmetatable
23 local task_notification = nil
26 if task_notification ~= nil then
27 naughty.destroy(task_notification)
28 task_notification = nil
38 c_text = "<tt><span font='" .. task.font .. " "
39 .. task.font_size+2 .. "'><b>Tasks next</b></span>\n"
40 .. "<span font='" .. task.font .. " "
41 .. task.font_size .. "'>"
42 .. f:read("*all") .. "\n"
46 task_notification = naughty.notify({ text = c_text,
47 icon = task.notify_icon,
48 position = task.position,
51 timeout = task.timeout })
54 function task:add(...)
55 local f = io.popen("task add " .. ...)
56 c_text = "<tt><span font='" .. task.font .. " "
57 .. task.font_size .. "'>"
58 .. f:read("*all") .. "\n"
61 naughty.notify({ text = c_text,
62 icon = task.notify_icon,
63 position = task.position,
66 timeout = task.timeout})
69 function task:prompt_add()
70 awful.prompt.run( { prompt = "Add task: " },
71 mypromptbox[mouse.screen].widget,
76 awful.util.getdir("cache") .. "/history_task_add")
79 function task:execute(...)
80 local f = io.popen("task " .. ...)
81 c_text = "<tt><span font='" .. task.font .. " "
82 .. task.font_size .. "'>"
83 .. f:read("*all") .. "\n"
86 naughty.notify({ text = c_text,
87 icon = task.notify_icon,
88 position = task.position,
91 timeout = task.timeout})
94 function task:prompt()
95 awful.prompt.run( { prompt = "Task: " },
96 mypromptbox[mouse.screen].widget,
101 awful.util.getdir("cache") .. "/history_task")
104 function task:attach(widget, args)
105 local args = args or {}
106 task.font_size = tonumber(args.font_size) or 12
107 task.font = beautiful.font:sub(beautiful.font:find(""),
108 beautiful.font:find(" "))
109 task.fg = args.fg or beautiful.fg_normal or "#FFFFFF"
110 task.bg = args.bg or beautiful.bg_normal or "#FFFFFF"
111 task.position = args.position or "top_right"
112 task.timeout = args.timeout or 7
114 task.notify_icon = icons_dir .. "taskwarrior.png"
116 widget:connect_signal("mouse::enter", function () task:show() end)
117 widget:connect_signal("mouse::leave", function () task:hide() end)
118 widget:buttons(awful.util.table.join( awful.button({ }, 1, function ()
119 task:show(0, -1) end),
120 awful.button({ }, 3, function ()
121 task:show(0, 1) end) ))
124 return setmetatable(task, { __call = function(_, ...) return create(...) end })