dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | Submodules | README | LICENSE

notify-send (165B)


      1 #!/bin/sh
      2 if [ "$(uname)" = "Darwin" ]; then
      3     echo "$@" | terminal-notifier -sound default
      4     [ "$#" -gt "0" ] && say "$@"
      5 else
      6     /usr/bin/notify-send "$@"
      7 fi