Skip to content

Instantly share code, notes, and snippets.

@simnalamburt
Last active November 19, 2018 02:35
Show Gist options
  • Save simnalamburt/7724540180ec191dcfffff15c0d408d3 to your computer and use it in GitHub Desktop.
Save simnalamburt/7724540180ec191dcfffff15c0d408d3 to your computer and use it in GitHub Desktop.
#!/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