スクリプトエディタでアプリケーションとして書き出すと便利
Last active
January 17, 2019 05:25
-
-
Save pokutuna/6249350cc28be6083c877f828f381740 to your computer and use it in GitHub Desktop.
pomoslack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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