Re: [ANN] alert() implemented in pure Lua
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: [ANN] alert() implemented in pure Lua
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: 2016年6月22日 13:54:01 -0300
> On OSX, you can invoke osascript with a tiny little AppleScript to pop open a message box
This scripts work for me but I haven't tried in recent Mac OS X.
% cat alert
#!/bin/sh
osascript <<EOF
tell application "Finder"
activate
beep
display alert "$*"
end tell
return
EOF