From 81a02edc2bc5af61dc4c214b85d8fb256f2f1464 Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Mon, 31 Aug 2020 00:29:04 -0500 Subject: [PATCH] Update Defaults --- src/pomodoro.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pomodoro.rs b/src/pomodoro.rs index cc87747..2e9ef87 100644 --- a/src/pomodoro.rs +++ b/src/pomodoro.rs @@ -14,9 +14,9 @@ pub struct Pomodoro { } static POMODORO_CYCLES: u64 = 5; -static WORK_TIME: u64 = 2; -static SBREAK_TIME: u64 = 2; -static LBREAK_TIME: u64 = 2; +static WORK_TIME: u64 = 1500; // Default: 1500 (25min) +static SBREAK_TIME: u64 = 300; // Default: 300 (5min) +static LBREAK_TIME: u64 = 600; // Default: 600 (10min) static POLLING_RATE: Duration = Duration::from_millis(300); impl Pomodoro {