dotfiles/install_posix/install_tmux.sh

13 lines
205 B
Bash
Raw Permalink Normal View History

2024-05-06 00:39:48 +09:00
#!/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."