-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstatic.go
28 lines (18 loc) · 796 Bytes
/
static.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package main
import "fmt"
const version = "1.1.0"
var strHeader = fmt.Sprintf("timezilla %s (C) 2016 Chris de Almeida \"timezilla -h\" for more info", version)
var strHelp = fmt.Sprintf(`
timezilla %s (C) 2016 Chris de Almeida http://github.com/ctcpip/timezilla
a simple timer for the console/terminal
usage: timezilla [minutes]
minutes specified in fractional minutes
if no minutes specified, timer will default to 25 minutes (pomodoro standard)
timezilla # default 25 minute timer
timezilla .5 # 30 second timer
timezilla 1 # 1 minute timer
timezilla 2.5 # 2 minute, 30 second timer
timezilla 5 # 5 minute timer
timezilla 10.1 # 10 minute, six second timer
see http://github.com/ctcpip/timezilla for more usage details
`, version)