diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-03-12 10:19:24 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-03-12 10:19:24 +0100 |
commit | 501dd5505d950d89f5b4d0ad8249c38c36a102da (patch) | |
tree | ababe6702dbdcc19467167c8043cd7d2a5a12fcb /core/config | |
parent | d3b396b17602ad71a62cbc2eaf595a1d94579c4a (diff) |
replace hard-coded breaks with plugin
Diffstat (limited to 'core/config')
-rw-r--r-- | core/config | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/core/config b/core/config deleted file mode 100644 index aedd4f3..0000000 --- a/core/config +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -# initialize default configuration values -export POMODORO_STATE_PATH="${POMODORO_STATE_PATH:-$XDG_CACHE_HOME/$progname}" # ~/.cache/dppt -export POMODORO_NORMAL_DURATION="${POMODORO_NORMAL_DURATION:-$(( 25 * 60 ))}" # 25 minutes -export POMODORO_BREAK_SHORT_DURATION="${POMODORO_BREAK_SHORT_DURATION:-$(( 5 * 60 ))}" # 5 minutes -export POMODORO_BREAK_LONG_DURATION="${POMODORO_BREAK_LONG_DURATION:-$(( 15 * 60 ))}" # 15 minutes -export POMODORO_BREAK_SHORT_INTERVAL="${POMODORO_BREAK_INTERVAL:-2}" # every other lap -export POMODORO_BREAK_LONG_INTERVAL="${POMODORO_BREAK_INTERVAL:-6}" # every 3rd break - |