2013-09-25 15:08:11 +02:00
|
|
|
|
|
|
|
--[[
|
|
|
|
|
|
|
|
Licensed under GNU General Public License v2
|
|
|
|
* (c) 2013, Jan Xie
|
|
|
|
|
|
|
|
--]]
|
|
|
|
|
2017-01-23 20:58:19 +01:00
|
|
|
local helpers = require("lain.helpers")
|
2017-01-30 11:38:04 +01:00
|
|
|
local markup = require("lain.util").markup
|
2017-01-23 20:58:19 +01:00
|
|
|
local awful = require("awful")
|
|
|
|
local naughty = require("naughty")
|
|
|
|
local string = { format = string.format, gsub = string.gsub }
|
2013-09-25 15:08:11 +02:00
|
|
|
|
|
|
|
-- Taskwarrior notification
|
2017-02-08 14:15:48 +01:00
|
|
|
-- lain.widget.contrib.task
|
2013-09-25 15:08:11 +02:00
|
|
|
local task = {}
|
|
|
|
|
2016-12-04 12:42:39 +01:00
|
|
|
function task.hide()
|
2017-01-23 20:58:19 +01:00
|
|
|
if not task.notification then return end
|
|
|
|
naughty.destroy(task.notification)
|
|
|
|
task.notification = nil
|
2013-09-25 15:08:11 +02:00
|
|
|
end
|
|
|
|
|
2017-01-23 20:58:19 +01:00
|
|
|
function task.show(scr)
|
2016-12-04 12:42:39 +01:00
|
|
|
task.hide()
|
2013-09-25 15:08:11 +02:00
|
|
|
|
2017-01-06 11:21:19 +01:00
|
|
|
if task.followtag then
|
2017-01-23 20:58:19 +01:00
|
|
|
task.notification_preset.screen = awful.screen.focused()
|
|
|
|
elseif scr then
|
|
|
|
task.notification_preset.screen = scr
|
2015-07-29 13:21:59 +02:00
|
|
|
end
|
|
|
|
|
2017-01-23 23:03:13 +01:00
|
|
|
helpers.async(task.show_cmd, function(f)
|
2017-01-23 20:58:19 +01:00
|
|
|
task.notification = naughty.notify({
|
2017-01-30 11:55:45 +01:00
|
|
|
preset = task.notification_preset,
|
2017-01-23 23:03:13 +01:00
|
|
|
title = task.show_cmd,
|
2017-01-23 20:58:19 +01:00
|
|
|
text = markup.font(task.notification_preset.font,
|
|
|
|
awful.util.escape(f:gsub("\n*$", "")))
|
|
|
|
})
|
|
|
|
end)
|
2013-09-25 15:08:11 +02:00
|
|
|
end
|
|
|
|
|
2017-01-23 20:58:19 +01:00
|
|
|
function task.prompt()
|
|
|
|
awful.prompt.run {
|
|
|
|
prompt = task.prompt_text,
|
|
|
|
textbox = awful.screen.focused().mypromptbox.widget,
|
|
|
|
exe_callback = function(t)
|
2017-01-23 23:03:13 +01:00
|
|
|
helpers.async(t, function(f)
|
2017-01-23 20:58:19 +01:00
|
|
|
naughty.notify {
|
2017-01-23 23:03:13 +01:00
|
|
|
preset = task.notification_preset,
|
2017-01-23 20:58:19 +01:00
|
|
|
title = t,
|
|
|
|
text = markup.font(task.notification_preset.font,
|
|
|
|
awful.util.escape(f:gsub("\n*$", "")))
|
|
|
|
}
|
|
|
|
end)
|
|
|
|
end,
|
|
|
|
history_path = awful.util.getdir("cache") .. "/history_task"
|
|
|
|
}
|
2013-09-25 15:08:11 +02:00
|
|
|
end
|
|
|
|
|
2016-12-04 12:42:39 +01:00
|
|
|
function task.attach(widget, args)
|
2017-01-23 20:58:19 +01:00
|
|
|
local args = args or {}
|
2017-01-23 23:03:13 +01:00
|
|
|
task.show_cmd = args.show_cmd or "task next"
|
2017-01-23 20:58:19 +01:00
|
|
|
task.prompt_text = args.prompt_text or "Enter task command: "
|
|
|
|
task.followtag = args.followtag or false
|
|
|
|
task.notification_preset = args.notification_preset
|
|
|
|
|
|
|
|
if not task.notification_preset then
|
2017-01-25 17:28:37 +01:00
|
|
|
task.notification_preset = {
|
|
|
|
font = "Monospace 10",
|
|
|
|
icon = helpers.icons_dir .. "/taskwarrior.png"
|
|
|
|
}
|
2017-01-23 20:58:19 +01:00
|
|
|
end
|
2013-09-25 15:08:11 +02:00
|
|
|
|
2017-01-23 20:58:19 +01:00
|
|
|
if widget then
|
|
|
|
widget:connect_signal("mouse::enter", function () task.show() end)
|
|
|
|
widget:connect_signal("mouse::leave", function () task.hide() end)
|
|
|
|
end
|
2013-09-25 15:08:11 +02:00
|
|
|
end
|
|
|
|
|
2017-01-23 20:58:19 +01:00
|
|
|
return task
|