diff options
| -rw-r--r-- | .bashrc | 34 | 
1 files changed, 34 insertions, 0 deletions
@@ -8,7 +8,41 @@  # variables  GOPATH=$HOME/go  export EDITOR=nvim +PROGRAMS=' +aerc +bemenu-run +brightnessctl +dunst +foot +gammastep +grim +htop +khard +lf +mpv +nvim +pactl +rifle +slurp +swappy +swappy +sway +swaylock +vdirsyncer +' +# check for missing programs +echo "$PROGRAMS" | while read -r program +do +	if [ "$program" == '' ] +	then +		continue +	fi +	if ! command -v "$program" 2>&1 > /dev/null +	then +		echo "Program is missing: '$program'" +	fi +done  # alias definitions  alias ls='ls --color=auto'  | 
