Created
May 27, 2014 02:55
-
-
Save tototoshi/1ed244bacff84518fbd1 to your computer and use it in GitHub Desktop.
OS X での通知
This file contains 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
import subprocess | |
script = 'display notification "Finished" with title "Job Finished" sound name "Tritone"' | |
p = subprocess.Popen(["osascript"], stdin=subprocess.PIPE) | |
p.stdin.write(script) | |
p.stdin.close() | |
p.wait() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment