This repository contains personal settings and scripts for a user's home/
directory.
apt-get install build-essential m4
make install
Note: running make install
overwrites contents the current user's $HOME
directory. Use the following to test changes in an ephemeral $HOME directory:
tmpdir="$(mktemp -d)"
make && make install DESTDIR="$tmpdir"
env -i HOME="$tmpdir" TERM="$TERM" "$SHELL" -l
make test
MIT