From e6c1cacb60010ec75e02cf72acf34278417670fd Mon Sep 17 00:00:00 2001 From: lonkaars Date: Mon, 11 Mar 2024 18:33:02 +0100 Subject: initial commit (basic functionality) --- core/start | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100755 core/start (limited to 'core/start') diff --git a/core/start b/core/start new file mode 100755 index 0000000..ae471ad --- /dev/null +++ b/core/start @@ -0,0 +1,39 @@ +#!/bin/sh +[ "$1" = "info" ] && echo "start or resume the timer" && exit 2 + +usage() { + cat << EOF +usage: + $subcmd [options] + +options: + -h, --help display this help text + -s, --skip skip to next lap, even if the timer is currently running + +EOF +} + +. "$core_path/lib" +. "$core_path/update" + +allow_skip=0 +while [ $# -gt 0 ] ; do + case "$1" in + -h|--help) usage && exit 0 ;; + -s|--skip) shift ; allow_skip=1 ;; + --) shift ; break ;; + *) err "unknown parameter: $1" ;; + esac +done + +if [ "$state" = 'running' ] ; then + [ $allow_skip -eq 0 ] && err "timer is already running, use -s to skip lap" + time="0.0" + lap=$(( $lap + 1 )) + . "$core_path/update" +fi + +time="$(echo "$now + $time" | bc)" +state='running' + +save_state -- cgit v1.2.3