Skip to content

Instantly share code, notes, and snippets.

@placek
Last active October 20, 2015 10:30
Show Gist options
  • Save placek/0098fbbb927907688db2 to your computer and use it in GitHub Desktop.
Save placek/0098fbbb927907688db2 to your computer and use it in GitHub Desktop.
function ensure {
if [[ $? -eq 0 ]]; then
/usr/bin/osascript -e 'display notification "Zajebiście kurwa - działa!"'
say 'Zajebiście kurwa - działa!'
else
/usr/bin/osascript -e 'display notification "Nosz kurwa - coś jebło!"'
say 'Nosz kurwa - coś jebło!'
fi
}
# usage:
# $ some_command; ensure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment