dotfiles

personal configuration files and scripts
git clone https://tongong.net/git/dotfiles.git
Log | Files | Refs | README

install.sh (360B)


      1 #!/bin/sh
      2 # installs all programs in this repo
      3 
      4 RESET='\e[0m'
      5 YELLOW='\e[1;33m'
      6 
      7 SCRIPTDIR="$(realpath "$(dirname "$0")")"
      8 
      9 PROGRAMS="clipnotify clipmenu diary dmenu dwm dsblocks passmenu-plus pinentry-dmenu slock st statnot sxiv"
     10 
     11 for i in $PROGRAMS; do
     12     echo -e "${YELLOW}Installing $i.${RESET}"
     13     cd "$SCRIPTDIR/$i"
     14     make
     15     sudo make install
     16 done