Modern CLI tools with better UX
Terminal clock, stopwatch, and timer with curses TUI.
Version: 0.1.0
# Show local time
clock
# Show a specific timezone
clock UTC-3
clock GMT+5:30
# Compare multiple timezones
clock UTC-3 UTC JST
# Stopwatch (space=start/lap, s=stop, r=reset, q=quit)
clock -c
# Time a command via pipe
ls -R / | clock -c
long_running_script.sh | clock -c
# Countdown timer (minutes)
clock -t 5 # 5 minute timer
clock -t 0.5 # 30 second timer
clock -t 25 # Pomodoro timer
| Mode | Key | Action |
|---|---|---|
| Clock | q/Esc | Quit |
| Stopwatch | space | Start / Lap |
| Stopwatch | s | Stop |
| Stopwatch | r | Reset |
| Stopwatch | q/Esc | Quit |
| Timer | space | Pause / Resume |
| Timer | r | Restart |
| Timer | q/Esc | Quit |
git clone https://github.com/pynosaur/clock.git
cd clock
bazel build //:clock_bin
cp bazel-bin/clock ~/.local/bin/
pget install clock