From 4637883ba3ab217e97806c785c1eaa9f18dbaa79 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Tue, 31 Jan 2017 00:55:39 +0000 Subject: [PATCH] awesome: update pomodoro times --- awesome/widgets/pomodoro.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awesome/widgets/pomodoro.lua b/awesome/widgets/pomodoro.lua index 942967d..e55b1e4 100644 --- a/awesome/widgets/pomodoro.lua +++ b/awesome/widgets/pomodoro.lua @@ -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 " "..t.."" end -- 2.48.1