diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..0ec37b9 --- /dev/null +++ b/install.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +if [ -e "$HOME/.tmux" ] ; then + mv "$HOME/.tmux" "$HOME/.tmux-original" +fi + +if [ -e "$HOME/.tmux.conf" ] ; then + mv "$HOME/.tmux.conf" "$HOME/.tmux.conf-original" +fi + +ln -s "$HOME/.config/tmux" .tmux +ln -s "$HOME/.config/tmux/tmux.conf" .tmux.conf