From dd3081bf3ec599c74a043f0ab7b96c17cad049ce Mon Sep 17 00:00:00 2001 From: jjanzen Date: Mon, 10 Mar 2025 14:55:17 -0500 Subject: [PATCH] set default times correctly --- pomodoro-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pomodoro-mode.el b/pomodoro-mode.el index efc5c52..d65ec4d 100644 --- a/pomodoro-mode.el +++ b/pomodoro-mode.el @@ -28,13 +28,13 @@ :group 'pomodoro) ;;;###autoload -(defcustom pomodoro-work-time (* 25 1) +(defcustom pomodoro-work-time (* 25 60) "The length of a pomodoro work session in seconds" :type '(integer) :group 'pomodoro) ;;;###autoload -(defcustom pomodoro-break-time (* 5 1) +(defcustom pomodoro-break-time (* 5 60) "The length of a pomodoro break session in seconds" :type '(integer) :group 'pomodoro)