summaryrefslogtreecommitdiffstats
path: root/.scripts/tools/ifinstalled
blob: b0d23e5cc8150f93037de8669b6b93a9b6fa6573 (plain) (blame)
1
2
3
#!/bin/sh
# If $1 command is not available, error code and notify.
command -v "$1" >/dev/null || { notify-send "📦 $1" "must be installed for this function." && exit 1 ;}