2013-09-25 15:08:11 +02:00
|
|
|
|
|
|
|
--[[
|
|
|
|
|
|
|
|
Licensed under GNU General Public License v2
|
|
|
|
* (c) 2013, Jan Xie
|
|
|
|
|
|
|
|
--]]
|
|
|
|
|
|
|
|
local icons_dir = require("lain.helpers").icons_dir
|
|
|
|
|
|
|
|
local awful = require("awful")
|
|
|
|
local beautiful = require("beautiful")
|
|
|
|
local naughty = require("naughty")
|
|
|
|
|
2015-07-29 13:21:59 +02:00
|
|
|
local mouse = mouse
|
2013-09-25 15:08:11 +02:00
|
|
|
local io = io
|
|
|
|
local string = { len = string.len }
|
|
|
|
local tonumber = tonumber
|
|
|
|
|
|
|
|
local setmetatable = setmetatable
|
|
|
|
|
|
|
|
-- Taskwarrior notification
|
2014-10-11 14:17:05 +02:00
|
|
|
-- lain.widgets.contrib.task
|
2013-09-25 15:08:11 +02:00
|
|
|
local task = {}
|
|
|
|
|
|
|
|
local task_notification = nil
|
|
|
|
|
2016-07-17 10:24:00 +02:00
|
|
|
function findLast(haystack, needle)
|
|
|
|
local i=haystack:match(".*"..needle.."()")
|
|
|
|
if i==nil then return nil else return i-1 end
|
|
|
|
end
|
|
|
|
|
2013-09-25 15:08:11 +02:00
|
|
|
function task:hide()
|
|
|
|
if task_notification ~= nil then
|
|
|
|
naughty.destroy(task_notification)
|
|
|
|
task_notification = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-07-28 20:43:47 +02:00
|
|
|
function task:show(scr_pos)
|
2013-09-25 15:08:11 +02:00
|
|
|
task:hide()
|
|
|
|
|
2016-07-28 23:13:35 +02:00
|
|
|
local f, c_text, scrp
|
2013-09-25 15:08:11 +02:00
|
|
|
|
2015-07-29 13:21:59 +02:00
|
|
|
if task.followmouse then
|
2016-07-28 23:13:35 +02:00
|
|
|
scrp = mouse.screen
|
2015-07-29 13:21:59 +02:00
|
|
|
else
|
2016-07-28 23:13:35 +02:00
|
|
|
scrp = scr_pos or task.scr_pos
|
2015-07-29 13:21:59 +02:00
|
|
|
end
|
|
|
|
|
2016-07-14 17:24:38 +02:00
|
|
|
f = io.popen('task ' .. task.cmdline)
|
2013-09-25 15:21:21 +02:00
|
|
|
c_text = "<span font='"
|
2013-09-25 15:08:11 +02:00
|
|
|
.. task.font .. " "
|
|
|
|
.. task.font_size .. "'>"
|
2016-07-22 06:51:30 +02:00
|
|
|
.. awful.util.escape(f:read("*all"):gsub("\n*$", ""))
|
2013-09-25 15:21:21 +02:00
|
|
|
.. "</span>"
|
2013-09-25 15:08:11 +02:00
|
|
|
f:close()
|
|
|
|
|
|
|
|
task_notification = naughty.notify({ title = "[task next]",
|
|
|
|
text = c_text,
|
|
|
|
icon = task.notify_icon,
|
|
|
|
position = task.position,
|
|
|
|
fg = task.fg,
|
|
|
|
bg = task.bg,
|
2014-07-19 16:36:15 +02:00
|
|
|
timeout = task.timeout,
|
2015-07-29 13:21:59 +02:00
|
|
|
screen = scrp
|
2014-07-19 16:36:15 +02:00
|
|
|
})
|
2013-09-25 15:08:11 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function task:prompt_add()
|
|
|
|
awful.prompt.run({ prompt = "Add task: " },
|
|
|
|
mypromptbox[mouse.screen].widget,
|
|
|
|
function (...)
|
|
|
|
local f = io.popen("task add " .. ...)
|
2015-07-03 12:17:31 +02:00
|
|
|
c_text = "\n<span font='"
|
2013-09-25 15:08:11 +02:00
|
|
|
.. task.font .. " "
|
|
|
|
.. task.font_size .. "'>"
|
2016-07-22 06:51:30 +02:00
|
|
|
.. awful.util.escape(f:read("*all"))
|
2013-09-25 15:21:21 +02:00
|
|
|
.. "</span>"
|
|
|
|
f:close()
|
2013-09-25 15:08:11 +02:00
|
|
|
|
|
|
|
naughty.notify({
|
2013-09-25 15:21:21 +02:00
|
|
|
text = c_text,
|
|
|
|
icon = task.notify_icon,
|
2013-09-25 15:08:11 +02:00
|
|
|
position = task.position,
|
2013-09-25 15:21:21 +02:00
|
|
|
fg = task.fg,
|
|
|
|
bg = task.bg,
|
2014-07-19 16:36:15 +02:00
|
|
|
timeout = task.timeout,
|
2013-09-25 15:08:11 +02:00
|
|
|
})
|
|
|
|
end,
|
|
|
|
nil,
|
|
|
|
awful.util.getdir("cache") .. "/history_task_add")
|
|
|
|
end
|
|
|
|
|
|
|
|
function task:prompt_search()
|
|
|
|
awful.prompt.run({ prompt = "Search task: " },
|
|
|
|
mypromptbox[mouse.screen].widget,
|
|
|
|
function (...)
|
|
|
|
local f = io.popen("task " .. ...)
|
2013-09-25 15:21:21 +02:00
|
|
|
c_text = f:read("*all"):gsub(" \n*$", "")
|
2013-09-25 15:08:11 +02:00
|
|
|
f:close()
|
|
|
|
|
|
|
|
if string.len(c_text) == 0
|
|
|
|
then
|
|
|
|
c_text = "No results found."
|
|
|
|
else
|
2013-09-25 15:21:21 +02:00
|
|
|
c_text = "<span font='"
|
2013-09-25 15:08:11 +02:00
|
|
|
.. task.font .. " "
|
|
|
|
.. task.font_size .. "'>"
|
2016-07-22 06:51:30 +02:00
|
|
|
.. awful.util.escape(c_text)
|
2013-09-25 15:21:21 +02:00
|
|
|
.. "</span>"
|
2013-09-25 15:08:11 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
naughty.notify({
|
2013-09-25 15:21:21 +02:00
|
|
|
title = "[task next " .. ... .. "]",
|
|
|
|
text = c_text,
|
|
|
|
icon = task.notify_icon,
|
2013-09-25 15:08:11 +02:00
|
|
|
position = task.position,
|
2013-09-25 15:21:21 +02:00
|
|
|
fg = task.fg,
|
|
|
|
bg = task.bg,
|
2014-07-19 16:36:15 +02:00
|
|
|
timeout = task.timeout,
|
2015-07-28 20:43:47 +02:00
|
|
|
screen = mouse.screen
|
2013-09-25 15:08:11 +02:00
|
|
|
})
|
|
|
|
end,
|
|
|
|
nil,
|
|
|
|
awful.util.getdir("cache") .. "/history_task")
|
|
|
|
end
|
|
|
|
|
|
|
|
function task:attach(widget, args)
|
2015-07-29 13:21:59 +02:00
|
|
|
local args = args or {}
|
|
|
|
|
|
|
|
task.font_size = tonumber(args.font_size) or 12
|
2016-07-17 10:24:00 +02:00
|
|
|
task.font = args.font or beautiful.font:sub(beautiful.font:find(""),
|
|
|
|
findLast(beautiful.font, " "))
|
2015-07-29 13:21:59 +02:00
|
|
|
task.fg = args.fg or beautiful.fg_normal or "#FFFFFF"
|
|
|
|
task.bg = args.bg or beautiful.bg_normal or "#FFFFFF"
|
|
|
|
task.position = args.position or "top_right"
|
|
|
|
task.timeout = args.timeout or 7
|
|
|
|
task.scr_pos = args.scr_pos or 1
|
|
|
|
task.followmouse = args.followmouse or false
|
2016-07-14 17:24:38 +02:00
|
|
|
task.cmdline = args.cmdline or "next"
|
2013-09-25 15:08:11 +02:00
|
|
|
|
|
|
|
task.notify_icon = icons_dir .. "/taskwarrior/task.png"
|
|
|
|
task.notify_icon_small = icons_dir .. "/taskwarrior/tasksmall.png"
|
|
|
|
|
2015-07-29 13:21:59 +02:00
|
|
|
widget:connect_signal("mouse::enter", function () task:show(task.scr_pos) end)
|
2013-09-25 15:08:11 +02:00
|
|
|
widget:connect_signal("mouse::leave", function () task:hide() end)
|
|
|
|
end
|
|
|
|
|
|
|
|
return setmetatable(task, { __call = function(_, ...) return create(...) end })
|