๐Ÿ“ฆ ctcpip / timezilla

๐Ÿ“„ static.go ยท 29 lines
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
29package 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)