diff --git a/.gitignore b/.gitignore index d2d6f36..d26d311 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,6 @@ nosetests.xml .mr.developer.cfg .project .pydevproject + +# OSX finder-files +.DS_Store \ No newline at end of file diff --git a/README.md b/README.md index bd1014f..15fdef7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # [A countdown timer extension for Alfred.app](http://dbader.org/blog/alfred-timer-extension) -A simple countdown timer command for [Alfred.app](http://www.alfredapp.com/) that uses Mountain Lion User Notifications. +A simple countdown and pomodoro timer command for [Alfred.app](http://www.alfredapp.com/) that uses Mountain Lion User Notifications. -![Demo screenshot](https://raw.github.com/dbader/alfred-countdown-timer/master/screenshot.png) +![Demo screenshot](https://raw.github.com/gismo141/alfred-countdown-timer/master/Resources/screenshot.png) The extension is described in closer detail on my [blog](http://dbader.org/blog/alfred-timer-extension). @@ -28,12 +28,31 @@ Depending on whether you're running Alfred 1 or Alfred 2 you need different vers To use this extension you need [Alfred.app](http://www.alfredapp.com/) for OS X and the [Alfred PowerPack](http://www.alfredapp.com/powerpack/). ## Usage + +### General + - The general syntax is `timer [minutes] [optional:title]` - `timer 5` sets a countdown timer that goes off after 5 minutes. - `timer 0:30` or `timer 0.5` sets a timer that goes off after 30 seconds. - `timer 40 Laundry is done!` adds an optional title to the timer. - `timer` displays usage information. +### Pomodoro + +The pomodoro-timer does: +- starts a standard timer for the **25 minutes work** +- starts a standard timer for the **5 minutes break** (right after the first finished) + +To start a pomodoro-timer call `timerp` in Alfred. + +![Example for pomodoro-timer](https://raw.github.com/gismo141/alfred-countdown-timer/master/Resources/alfred_call.png) + +![Notification Center information for pomodoro-timer](https://raw.github.com/gismo141/alfred-countdown-timer/master/Resources/nc_start_info.png) + +![Notification Center information when pomodoro-work-timer finishes](https://raw.github.com/gismo141/alfred-countdown-timer/master/Resources/nc_end_info.png) + +![Notification Center information when pomodoro-break-timer finishes](https://raw.github.com/gismo141/alfred-countdown-timer/master/Resources/nc_break_over.png) + ##Meta Daniel Bader – [@dbader_org](https://twitter.com/dbader_org) – mail@dbader.org diff --git a/Resources/.DS_Store b/Resources/.DS_Store new file mode 100644 index 0000000..30c7a6c Binary files /dev/null and b/Resources/.DS_Store differ diff --git a/Resources/alfred_call.png b/Resources/alfred_call.png new file mode 100644 index 0000000..449a3a7 Binary files /dev/null and b/Resources/alfred_call.png differ diff --git a/Resources/nc_break_over.png b/Resources/nc_break_over.png new file mode 100644 index 0000000..f1edcd6 Binary files /dev/null and b/Resources/nc_break_over.png differ diff --git a/Resources/nc_end_info.png b/Resources/nc_end_info.png new file mode 100644 index 0000000..d9471a6 Binary files /dev/null and b/Resources/nc_end_info.png differ diff --git a/Resources/nc_start_info.png b/Resources/nc_start_info.png new file mode 100644 index 0000000..4dc73d7 Binary files /dev/null and b/Resources/nc_start_info.png differ diff --git a/screenshot.png b/Resources/screenshot.png similarity index 100% rename from screenshot.png rename to Resources/screenshot.png diff --git a/Timer.alfredworkflow b/Timer.alfredworkflow index 61e5dca..c5c2597 100644 Binary files a/Timer.alfredworkflow and b/Timer.alfredworkflow differ