Dzier 0 Posted December 28, 2017 Hi guys! Is there a chance to pause the timer, or add something similar to the workflow? (For the people that's interrupted 4 o 6 times in an hour) Thanks in advance! Share this post Link to post
Dzier 0 Posted December 28, 2017 On 7/12/2017 at 7:36 PM, Basket said: Just tried "timer nuke" and I'm unfortunately still having the same problem, I'm on High Sierra so that may be causing some kind of issue? Thanks for the suggestion by the way, I really appreciate it! The same issue here using El Captain :/ Share this post Link to post
Luciano Santana 4 Posted March 29, 2018 Here is my own custom version : https://github.com/lucianosantana/EggTimer2 (based on the updated version for Alfred 3 by @ianhowson) For the issues with the notification I had to change the notify_functions.sh . I've completely erased the original and added the following : notify () { if [ "$5" = alarm ]; then nc_icon="$PWD/resources/icon_alarm.icns" else nc_icon="$PWD/resources/icon.icns" fi osascript <<EOD set img to POSIX file "$nc_icon" display dialog "$3\n$4" with title "$1" with icon img buttons {"OK"} EOD } I'm using AppleScript to display a Dialog (not a notification). This way the message sticks on the screen until I interact with it and I don't loose the reminder if I'm temporarily away. I also had to invert the order of execution of the sound and alert. Originally it executes the notification then the sound. But changing the notification to dialog blocks the script execution, therefore the sounds executes after user interaction. To solve this issue just search for afplay sounds/alarm_done.mp3 & in the files timer_alarm.sh , timer_auto.sh and timer.sh . Then move it just before the notify command. Might be helpful for you @Basket and @Dzier . 2 2 Basket, Rio, seanrwcrawford and 1 other reacted to this Share this post Link to post
Basket 0 Posted April 5, 2018 @Luciano Santana Your fix works works wonderfully, thank you so much! Share this post Link to post
jonteamere 3 Posted April 16, 2018 Hey @Luciano Santana, I love what you did with this workflow. Was thinking that it'd be nice to be able to trigger additional timers from the pop-up window...any ideas on how to accomplish that? Would it be easy to assign additional buttons to the task(s)? For example, setting timer for '25 Are you still working?' and having the option to set an additional 25 min by clicking 'Yes' (context-specific) or '25 min' or whatever on pop-up window... Share this post Link to post
Rio 0 Posted April 23, 2018 @Luciano Santana Your modified version runs good on my computer. Thanks so much! Share this post Link to post
Russell Davis 3 Posted May 17, 2018 @Luciano Santana (and anyone else following along), there are a few commands (Create New Timer, Create New Alarm, and View Recent) that are still broken in Alfred 3. I have a branch that fixes them. (I also submitted a PR to Luciano's repo.) 2 1 cands, seanrwcrawford and cblock reacted to this Share this post Link to post
Chamend 0 Posted June 15, 2018 On 5/17/2018 at 2:35 PM, Russell Davis said: @Luciano Santana (and anyone else following along), there are a few commands (Create New Timer, Create New Alarm, and View Recent) that are still broken in Alfred 3. I have a branch that fixes them. (I also submitted a PR to Luciano's repo.) Super newbie question -- how do I add this branch into Alfred as a workflow? Also, to anyone reading, I could use some help integrating parts of this workflow into another. Right now, I start work by typing "start work", and the apps I use open and the webpages I need to start with also open. I'd like have my "start work" command also start a repeating 30 minute timer to remind me to take a break. Anyone know how I could do that within the workflow manager? Share this post Link to post
deanishe 885 Posted June 16, 2018 13 hours ago, Chamend said: how do I add this branch into Alfred as a workflow? Download the zip file from the repo (Clone or download > Download ZIP) and extract it. Go into the new directory, select all the files, right-click and choose "Compress 11 Items". That will create Archive.zip. change the name to Archive.alfredworkflow and double-click it. 3 2 Damoeire, seanrwcrawford, cands and 2 others reacted to this Share this post Link to post
cblock 1 Posted February 9 Thanks to everyone for updating the plugin to Alfred 3. It's awesome. Shoutout to @Luciano Santana and @Russell Davis, the latest version is great. Share this post Link to post