]> git.madduck.net Git - etc/awesome.git/blobdiff - widget/contrib/task.lua

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

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.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

widget.contrib.task: use shell for spawn_cmd, set title to static 'task next'
[etc/awesome.git] / widget / contrib / task.lua
index ba795538647f1b711e32056e5e0fd88cc5e6383a..69d9fd09d2a497c172c86c43fefebaa1243a1f8e 100644 (file)
@@ -31,10 +31,10 @@ function task.show(scr)
         task.notification_preset.screen = scr
     end
 
         task.notification_preset.screen = scr
     end
 
-    helpers.async(task.show_cmd, function(f)
+    helpers.async({ awful.util.shell, "-c", task.show_cmd }, function(f)
         task.notification = naughty.notify({
             preset = task.notification_preset,
         task.notification = naughty.notify({
             preset = task.notification_preset,
-            title  = task.show_cmd,
+            title  = "task next",
             text   = markup.font(task.notification_preset.font,
                      awful.util.escape(f:gsub("\n*$", "")))
         })
             text   = markup.font(task.notification_preset.font,
                      awful.util.escape(f:gsub("\n*$", "")))
         })
@@ -49,9 +49,9 @@ function task.prompt()
             helpers.async(t, function(f)
                 naughty.notify {
                     preset = task.notification_preset,
             helpers.async(t, function(f)
                 naughty.notify {
                     preset = task.notification_preset,
-                    title    = t,
-                    text     = markup.font(task.notification_preset.font,
-                               awful.util.escape(f:gsub("\n*$", "")))
+                    title  = t,
+                    text   = markup.font(task.notification_preset.font,
+                             awful.util.escape(f:gsub("\n*$", "")))
                 }
             end)
         end,
                 }
             end)
         end,