summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bashrc34
1 files changed, 34 insertions, 0 deletions
diff --git a/.bashrc b/.bashrc
index 0c48c49..3e1966c 100644
--- a/.bashrc
+++ b/.bashrc
@@ -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'