dotfiles

beau's configuration files
git clone https://git.beauhilton.com/dotfiles.git
Log | Files | Refs | README

ifinstalled (181B)


      1 #!/usr/bin/env sh
      2 # If $1 command is not available, error code and notify.
      3 command -v "$1" >/dev/null || { notify-send "📦 $1" "must be installed for this function." && exit 1 ;}