How to create alert in osx which could be triggered via command line?
function alert() { osascript -e 'display notification "'"$1"'" with title "'"Alert"'"' && say $1; }
alert "Wow it's so nice 🤓"