diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-04-27 23:23:25 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-04-27 23:24:17 +0900 |
| commit | 531820f3d60a301751c41d0aac5bbf5615f677b1 (patch) | |
| tree | d178e7878ca2d8049388182e2fbabf1c273fa364 /README.md | |
| parent | f42703288ce166381febfe8bcdc01c412f414772 (diff) | |
| download | term-clock-531820f3d60a301751c41d0aac5bbf5615f677b1.tar.gz term-clock-531820f3d60a301751c41d0aac5bbf5615f677b1.tar.zst term-clock-531820f3d60a301751c41d0aac5bbf5615f677b1.zip | |
feat: run "clock" subcommand if no subcommand is givenv1.0.0
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 18 |
1 files changed, 12 insertions, 6 deletions
@@ -11,7 +11,7 @@ A digital clock that runs in your terminal, providing clock, alarm and timer. ## Installation ```bash -go install github.com/nsfisis/term-clock@latest +$ go install github.com/nsfisis/term-clock@latest ``` ## Usage @@ -21,7 +21,13 @@ go install github.com/nsfisis/term-clock@latest Displays the current time in digital format. ```bash -term-clock clock +$ term-clock clock +``` + +or + +```bash +$ term-clock ``` ### Alarm Mode @@ -29,7 +35,7 @@ term-clock clock The screen flashes when the specified time is reached. Time should be specified in 24-hour format (HH:MM). ```bash -term-clock alarm 07:00 # Alarm at 7:00 AM +$ term-clock alarm 07:00 # Alarm at 7:00 AM ``` ### Timer Mode @@ -38,9 +44,9 @@ Counts down from the specified duration. Time should be specified using Go's dur The screen flashes when the timer ends. ```bash -term-clock timer 25m # 25-minute timer -term-clock timer 90s # 90-second timer -term-clock timer 1h30m # 1 hour 30 minutes timer (note: maximum 99 minutes) +$ term-clock timer 25m # 25-minute timer +$ term-clock timer 90s # 90-second timer +$ term-clock timer 1h30m # 1 hour 30 minutes timer (note: maximum 99 minutes) ``` ## How to Exit |
