Update Defaults

This commit is contained in:
Rekai Nyangadzayi Musuka 2020-08-31 00:29:04 -05:00
parent 8af7738a5b
commit 81a02edc2b
1 changed files with 3 additions and 3 deletions

View File

@ -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 {