#!/bin/bash OS=$(uname) if [ "$OS" = "Darwin" ]; then terminal-notifier -contentImage "$2" -title "$3" -message "$4" else notify-send -u "$1" -i "$2" "$3" "$4" fi