#!/bin/sh
DIRS="dwm dmenu dwmblocks st"
for dir in $DIRS; do
  (
    echo "building $dir"
    cd $dir
    ./install
  )
done
wait
echo "done"
