aboutsummaryrefslogtreecommitdiff
path: root/install.sh
blob: 848536f8ccf229758c3bc91f39ca9ab7eca2ef3a (plain)
1
2
3
4
5
6
#!/bin/sh
dirs=("dwm" "dmenu" "slstatus" "st")

for dir in "${dirs[@]}"; do
  (cd "$dir" && sudo make clean install)
done