#!/bin/sh set -e if command -v apt-get ; then apt-get -y install tmux git else echo "Error - no package installer found." exit 1 fi mkdir -p /home/"$_user"/.config cd /home/"$_user" rm -Rf .config/tmux if [ -h .tmux ] ; then rm .tmux elif [ -f .tmux ] ; then mv .tmux .tmux.backup fi su "$_user" -c 'git clone https://git.rayelliott.dev/dots/tmux.git .config/tmux' su "$_user" -c 'ln -bfs .config/tmux/tmux.conf .tmux.conf' su "$_user" -c 'ln -bfs .config/tmux/tmux .tmux' cd .config/tmux ln -bfs tmux.colours-base16.conf tmux.colours.conf