diff options
Diffstat (limited to 'core/pause')
-rwxr-xr-x | core/pause | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,10 +4,10 @@ . "$core_path/lib" . "$core_path/update" -[ "$state" != 'running' ] && err "timer is not running" +[ $running -eq 0 ] && err "timer is not running" time="$(echo "$time - $now" | bc)" -state='paused' +running=0 save_state |