dotfiles/install_posix/install_tmux.sh
2024-05-06 00:41:42 +09:00

12 lines
205 B
Bash
Executable file

#!/usr/bin/env bash
echo "configuring tmux.."
src=`pwd`/../tmux.conf
dest=${HOME}/.tmux.conf
if [ -e ${dest} ]; then
echo "~/.tmux.conf exists. abort"
exit 1
fi
ln -s ${src} ${dest}
echo "done."