shell-scripts/notify-send

18 lines
277 B
Bash
Executable File

#!/bin/sh
usage() {
cat <<-EOF
notify-send replacement for herbe; accepts but ignores all notify-send options.
EOF
}
while [ $# -gt 0 ]; do
case "$1" in
-?|--help) usage ;;
-[aAutichr]|--[aueichr]*) shift ;;
-[pwe]|--[pwt]*) ;;
*) herbe "$1" ;;
esac
shift
done