aboutsummaryrefslogtreecommitdiff
path: root/core/state
blob: 6aad04b482796fe5328dd271b3db94baada39cd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
[ "$1" = "info" ] && echo "show timer" && exit 2
. "$core_path/lib"

usage() {
	cat << EOF
$subcmd -- show timer

usage:
	$subcmd [options]

options:
	-h, --help  show help

actions:
EOF
}

. "$core_path/update"
echo "lap $lap, $([ $running -eq 1 ] && echo "running" || echo "paused"), $(fmt_time $remaining)"