set default times correctly

This commit is contained in:
jjanzen 2025-03-10 14:55:17 -05:00
parent ace2022745
commit dd3081bf3e

View file

@ -28,13 +28,13 @@
:group 'pomodoro) :group 'pomodoro)
;;;###autoload ;;;###autoload
(defcustom pomodoro-work-time (* 25 1) (defcustom pomodoro-work-time (* 25 60)
"The length of a pomodoro work session in seconds" "The length of a pomodoro work session in seconds"
:type '(integer) :type '(integer)
:group 'pomodoro) :group 'pomodoro)
;;;###autoload ;;;###autoload
(defcustom pomodoro-break-time (* 5 1) (defcustom pomodoro-break-time (* 5 60)
"The length of a pomodoro break session in seconds" "The length of a pomodoro break session in seconds"
:type '(integer) :type '(integer)
:group 'pomodoro) :group 'pomodoro)