tmux/install.sh

13 lines
275 B
Bash
Executable File

#!/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" "$HOME/.tmux"
ln -s "$HOME/.config/tmux/tmux.conf" "$HOME/.tmux.conf"