X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/5b266ecf16c30674abb42f49acfb003c86564531..558622c1ec8aa12355ef4fdf9963d86ad58c645f:/widget/contrib/task.lua diff --git a/widget/contrib/task.lua b/widget/contrib/task.lua index 69d9fd0..6c32751 100644 --- a/widget/contrib/task.lua +++ b/widget/contrib/task.lua @@ -1,15 +1,15 @@ - --[[ - - Licensed under GNU General Public License v2 - * (c) 2013, Jan Xie - + + Licensed under GNU General Public License v2 + * (c) 2013, Jan Xie + --]] local helpers = require("lain.helpers") local markup = require("lain.util").markup local awful = require("awful") local naughty = require("naughty") +local mouse = mouse local string = { format = string.format, gsub = string.gsub } -- Taskwarrior notification @@ -23,8 +23,6 @@ function task.hide() end function task.show(scr) - task.hide() - if task.followtag then task.notification_preset.screen = awful.screen.focused() elseif scr then @@ -32,12 +30,27 @@ function task.show(scr) end helpers.async({ awful.util.shell, "-c", task.show_cmd }, function(f) - task.notification = naughty.notify({ - preset = task.notification_preset, - title = "task next", - text = markup.font(task.notification_preset.font, - awful.util.escape(f:gsub("\n*$", ""))) - }) + local widget_focused = true + + if mouse.current_widgets then + widget_focused = false + for _,v in ipairs(mouse.current_widgets) do + if task.widget == v then + widget_focused = true + break + end + end + end + + if widget_focused then + task.hide() + task.notification = naughty.notify({ + preset = task.notification_preset, + title = "task next", + text = markup.font(task.notification_preset.font, + awful.util.escape(f:gsub("\n*$", ""))) + }) + end end) end @@ -65,6 +78,7 @@ function task.attach(widget, args) task.prompt_text = args.prompt_text or "Enter task command: " task.followtag = args.followtag or false task.notification_preset = args.notification_preset + task.widget = widget if not task.notification_preset then task.notification_preset = {