]> git.rmz.io Git - dotfiles.git/commitdiff
awesome: update pomodoro times
authorSamir Benmendil <me@rmz.io>
Tue, 31 Jan 2017 00:55:39 +0000 (00:55 +0000)
committerSamir Benmendil <me@rmz.io>
Tue, 31 Jan 2017 00:55:39 +0000 (00:55 +0000)
awesome/widgets/pomodoro.lua

index 942967df7a9d51be578e39888edcae879b7b1117..e55b1e4dddf9f43bf0ae21f0f03cbb6691178b59 100644 (file)
@@ -2,9 +2,9 @@ local pomodoro = require("widgets/pomodoro/init")
 local wibox = require("wibox")
 
 -- durations in seconds
-pomodoro.short_pause_duration = 0.5 * 60
-pomodoro.long_pause_duration = 1 * 60
-pomodoro.work_duration = 1 * 60
+pomodoro.short_pause_duration = 5 * 60
+pomodoro.long_pause_duration = 30 * 60
+pomodoro.work_duration = 25 * 60
 
 -- format string
 pomodoro.format = function (t) return " <b>"..t.."</b>" end