]> git.rmz.io Git - dotfiles.git/blobdiff - awesome/widgets/pomodoro.lua
mutt: fix F macro to not write message to home
[dotfiles.git] / awesome / widgets / pomodoro.lua
index 3c7af637a6e0564f5eb2d885a15bfa29e2bdcb93..7e7a5c1cd0c51099b999b0ef4e559b8bef93bb16 100644 (file)
@@ -8,6 +8,7 @@ pomodoro.work_duration = 25 * 60
 
 -- format string
 pomodoro.format = function (t) return " <b>"..t.."</b>" end
+pomodoro.auto_start_pomodoro = false
 
 pomodoro.init()
 
@@ -15,8 +16,16 @@ pombox = wibox.layout.fixed.horizontal()
 pombox:add(pomodoro.icon_widget)
 pombox:add(pomodoro.widget)
 
+--TODO connect signals to something sensible  (sb:20170130)
+-- pomodoro:connect_signal("stop_working",  function () naughty.notify{ text = "stop_working",  timeout = 10 } end)
+-- pomodoro:connect_signal("stop_pause",    function () naughty.notify{ text = "stop_pause",    timeout = 10 } end)
+-- pomodoro:connect_signal("start_working", function () naughty.notify{ text = "start_working", timeout = 10 } end)
+pomodoro:connect_signal("work_stop", function ()
+    awful.spawn(terminal.." -name diary -e diary")
+end)
+
 globalkeys = awful.util.table.join(globalkeys,
-    awful.key({ modkey, "Shift" }, "p", function() pomodoro:start() end)
+    awful.key({ modkey, "Shift" }, "p", function() pomodoro:toggle() end)
 )
 
 return pombox