X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/b3cb552f0e19eb47b546c266c0b85fe349dbb52c..b51f3563d6cb0010825b2d2b9fe01e687f54345a:/awesome/widgets/pomodoro.lua diff --git a/awesome/widgets/pomodoro.lua b/awesome/widgets/pomodoro.lua index 3947aed..7e7a5c1 100644 --- a/awesome/widgets/pomodoro.lua +++ b/awesome/widgets/pomodoro.lua @@ -8,6 +8,7 @@ pomodoro.work_duration = 25 * 60 -- format string pomodoro.format = function (t) return " "..t.."" end +pomodoro.auto_start_pomodoro = false pomodoro.init() @@ -19,12 +20,12 @@ pombox:add(pomodoro.widget) -- 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("start_pause", function () - awful.spawn(terminal.." -name diary -e vim -c 'call vimwiki#diary#make_note(v:count1)' + -c 'r !date +\" * \\%H:\\%M \"' -c 'start!'") +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