2020-02-08 19:18:16 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
# check for existing implementations
|
|
|
|
# If $1 command is not available, error code
|
|
|
|
# If $2 is low, normal, urgent, also notify the user. (loud-mode)
|
|
|
|
|
|
|
|
if command -v "$1" >/dev/null; then
|
|
|
|
exit 0
|
|
|
|
else
|
|
|
|
if [ -n "$2" ]; then
|
|
|
|
if command -v notify-send >/dev/null; then
|
2020-05-11 14:52:51 +00:00
|
|
|
notify-send "📦 $1" --urgency="$2" "must be installed for ${3:-"this"} function."
|
2020-02-08 19:18:16 +00:00
|
|
|
fi
|
2020-05-11 14:52:51 +00:00
|
|
|
printf "%s: 📦 %s must be installed for %s function.\n" "$2" "$1" "${3:-"this"}"
|
2020-02-08 19:18:16 +00:00
|
|
|
fi
|
|
|
|
exit 1
|
|
|
|
fi
|