Skip to content

Instantly share code, notes, and snippets.

@pokutuna
Last active January 17, 2019 05:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pokutuna/6249350cc28be6083c877f828f381740 to your computer and use it in GitHub Desktop.
Save pokutuna/6249350cc28be6083c877f828f381740 to your computer and use it in GitHub Desktop.
pomoslack

pomoslack

スクリプトエディタでアプリケーションとして書き出すと便利

set focusMinutes to 25
set breakMinutes to 5
repeat
try
set progress description to "しごと"
if application "Slack" is running then
tell application "Slack"
quit
end tell
end if
set progress total steps to focusMinutes
repeat with min from 1 to focusMinutes
set progress completed steps to min
delay 60
end repeat
set progress description to "きゅうけい"
tell application "Slack"
activate
end tell
set progress total steps to breakMinutes
repeat with min from 1 to breakMinutes
set progress completed steps to min
delay 60
end repeat
on error
tell application "Slack"
activate
end tell
end try
end repeat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment