From 05dfe5be7ed11cf8c1f0027b23a6c13f8484f909 Mon Sep 17 00:00:00 2001 From: Michael Richters Date: Wed, 22 Nov 2017 23:55:34 -0600 Subject: [PATCH 1/2] Changed idle_time_limit to 5 minutes --- src/Kaleidoscope/TypingBreaks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kaleidoscope/TypingBreaks.cpp b/src/Kaleidoscope/TypingBreaks.cpp index 79fe88c6..4c0f466c 100644 --- a/src/Kaleidoscope/TypingBreaks.cpp +++ b/src/Kaleidoscope/TypingBreaks.cpp @@ -23,7 +23,7 @@ namespace kaleidoscope { TypingBreaks::settings_t TypingBreaks::settings = { - .idle_time_limit = 10, // 10s + .idle_time_limit = 300, // 5m .lock_time_out = 2700, // 45m .lock_length = 300, // 5m .left_hand_max_keys = 0, From b1e69bdb778fe69af2b3dcbacfff84f359e833aa Mon Sep 17 00:00:00 2001 From: Michael Richters Date: Thu, 23 Nov 2017 11:17:32 -0600 Subject: [PATCH 2/2] Changed default idle time in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f1ff660a..2556a5a7 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ properties. All times are in seconds. > The amount of time that can pass between two pressed keys, before the plugin > considers it a new session, and starts all timers and counters over. > -> Defaults to 10 seconds. +> Defaults to 300 seconds (5 minutes). ### `.settings.lock_time_out`