https://github.com/torvaney/alfred-timer
A timer for Alfred on MacOS
https://github.com/torvaney/alfred-timer
Last synced: 10 months ago
JSON representation
A timer for Alfred on MacOS
- Host: GitHub
- URL: https://github.com/torvaney/alfred-timer
- Owner: Torvaney
- Created: 2021-04-29T00:21:12.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-08-30T13:27:10.000Z (almost 4 years ago)
- Last Synced: 2025-02-28T22:24:35.499Z (over 1 year ago)
- Language: Python
- Size: 1.27 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# An Alfred Timer
A simple timer app for [Alfred](https://www.alfredapp.com/) using Python and launchd.
Setting a timer adds a one-time job to launchd (MacOS's [system service management daemon](https://en.wikipedia.org/wiki/Launchd)), so unlike some other Alfred timers, it won't create a new process for each timer.
## Screenshots
### With a title
### Invalid input
## Requirements
Requires Python 3.6+
(If anyone actually wants to use this for themselves _and_ wants it to run on an earlier version of Python - file an issue and I'd be happy to make it backwards compatible.)
## Notes
The timer command accepts a variety of different ways to specify a time unit:
* Seconds: 's', 'sec', 'secs', 'seconds'
* Minutes: 'm', 'min', 'mins', 'minutes'
* Hours: 'h', 'hour', 'hours'
Although (currently), you mustn't leave a gap between the number and the unit:
✅ - "20s", "5minutes", "30mins", "2hours"
❌ - "20 s", "5 mins"