Last active
November 19, 2018 02:35
-
-
Save simnalamburt/7724540180ec191dcfffff15c0d408d3 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env osascript -l JavaScript | |
// vim: ft=javascript | |
// 사용법: | |
// ./notify 안녕하세요. 김지현 입니다. | |
// | |
// 위와 같이 실행하면 알림센터에 '안녕하세요. 김지현 입니다.' 라는 메세지가 | |
// 벨소리와 함께 뜨고, '안녕하세요. 김지현 입니다.'라는 목소리가 재생된다. | |
'use strict' | |
var run = (argv) => { | |
const text = argv.join(' ') | |
const app = Application.currentApplication() | |
app.includeStandardAdditions = true | |
app.displayNotification(text, { | |
withTitle: '작업이 완료되었습니다!', | |
soundName: 'Glass', | |
}) | |
app.say(text) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment