Merge pull request #9 from gedankenexperimenter/bug/defaults

Changed idle_time_limit to 5 minutes
pull/389/head
Gergely Nagy 7 years ago committed by GitHub
commit 8949536491
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -49,7 +49,7 @@ properties. All times are in seconds.
> The amount of time that can pass between two pressed keys, before the plugin > 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. > 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` ### `.settings.lock_time_out`

@ -23,7 +23,7 @@
namespace kaleidoscope { namespace kaleidoscope {
TypingBreaks::settings_t TypingBreaks::settings = { TypingBreaks::settings_t TypingBreaks::settings = {
.idle_time_limit = 10, // 10s .idle_time_limit = 300, // 5m
.lock_time_out = 2700, // 45m .lock_time_out = 2700, // 45m
.lock_length = 300, // 5m .lock_length = 300, // 5m
.left_hand_max_keys = 0, .left_hand_max_keys = 0,

Loading…
Cancel
Save