voidrice/.scripts/tools/ifinstalled
Dr. Amr Osman 6a498b98ca Fork
2019-03-05 17:19:18 +02:00

4 lines
193 B
Bash
Executable File

#!/bin/sh
# If $1 command is not available, error code and notify.
command -v "$1" >/dev/null || { notify-send -i "$PIX/larbs.svg" "<b>$1</b> must be installed for this function." && exit 1 ;}