Update Defaults
This commit is contained in:
parent
8af7738a5b
commit
81a02edc2b
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue