diff options
author | Silas Bartha <[email protected]> | 2023-11-13 12:05:32 -0500 |
---|---|---|
committer | Silas Bartha <[email protected]> | 2023-11-13 12:05:32 -0500 |
commit | 7733a7d394499979f589506db87200a812249523 (patch) | |
tree | 8248dbfdedf558e547292bde0149df47ec6b7725 /src | |
parent | 4ca2b6e5e73f4d381a4662d10e54316d3ae69aeb (diff) |
Made long break longer
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 7f4f6b7..b34d17d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,7 +10,7 @@ use notify_rust::Notification; const WORK_DURATION_SECS: f32 = 15.0 * 60.0; const SHORT_BREAK_DURATION_SECS: f32 = 5.0 * 60.0; -const LONG_BREAK_DURATION_SECS: f32 = 15.0 * 60.0; +const LONG_BREAK_DURATION_SECS: f32 = 25.0 * 60.0; const NUM_ITERATIONS: u8 = 4; struct Pomd { |