File tree Expand file tree Collapse file tree 5 files changed +845
-0
lines changed
Expand file tree Collapse file tree 5 files changed +845
-0
lines changed Original file line number Diff line number Diff line change 1+ .editorconfig
Original file line number Diff line number Diff line change 1+ # This name apears in notification
2+ APP_NAME="Time wizard"
3+
4+ # Progress bar width
5+ BAR_WIDTH=40;
6+
7+ # Default: yes
8+ # Show progress bar
9+ BAR_PROGRESS="yes"
10+
11+ # Default task name if nothing is specified
12+ task=${1:-"Starting pomodoro task"}
13+
14+ # Default duration: -25 minutes
15+ mins=${2:-30}
16+
17+ # Default: Interval seconds displayed -1
18+ interval=${3:-1};
19+
20+ # Default locker command
21+ locker=""
22+
23+ # Default: no
24+ # If you specify yes a reminder sound will be played every 'interval' seconds )
25+ TICKS="no"
26+
27+ # Default : no
28+ # If you specify yes a reminder sound will be played at the end
29+ SOUND="no"
30+
31+ # Default sound player is paplay which is available with PulseAudio
32+ PLAYER='paplay'
33+
34+ # Default sound file to play once the pomodoro task is complete
35+ SOUND_FILE=""
36+
37+ # Default sound file to play for the specified intervals
38+ SOUND_CLICK_FILE=""
You can’t perform that action at this time.
0 commit comments