This is a Homebrew tap for minimal-timer - a minimalist command-line timer with smart time parsing.
brew tap dandaniel5/timer
brew install timerA powerful yet minimal command-line timer that supports:
- ⏰ Smart time parsing -
10m,1h 30s,2d 5h - 📝 Named timers - Add labels with
-nflag - 💤 Sleep integration - Auto-sleep system or display
- 📋 Multiple timers - Run and track multiple timers
- 🔔 Audio notifications - Bell sound on completion
# Simple 10 minute timer
timer 10m
# Named timer with system sleep
timer 25m -n "Pomodoro" -s
# List all running timers
timer -lsFor complete documentation, examples, and advanced usage, visit: https://github.com/dandaniel5/minimal-timer
Supports natural language time input with multiple units:
- Seconds:
s,sec,second,seconds - Minutes:
m,min,minute,minutes(default) - Hours:
h,hour,hours - Days:
d,day,days - Weeks:
w,week,weeks - Years:
y,year,years
-n, --name NAME Timer name/label
-s, --sleep Sleep system after timer
-sd, --sleep-display Sleep display only after timer
-ls, --list List all running timers
# Basic timer (defaults to minutes)
timer 5
# Complex duration
timer 1h 30m 45s
# Named timer
timer 25m -n "Work session"
# Multiple timers
timer 1h -n "Meeting" &
timer 30m -n "Lunch" &
timer -ls
# Auto-sleep display after timer
timer 20m -n "Break" -sdPomodoro Technique
timer 25m -n "Focus" && timer 5m -n "Break"Meeting Reminders
timer 1h -n "Team Standup" -sCooking
timer 12m -n "Pasta" &
timer 15m -n "Sauce" &Screen Breaks
timer 20m -n "Eye Rest" -sd- Python 3.6+
- macOS (for sleep functionality)
- Issues: https://github.com/dandaniel5/minimal-timer/issues
- Source: https://github.com/dandaniel5/minimal-timer
MIT License - see the main repository for details.