add tmux install script

This commit is contained in:
Kaz Saita(WSL2) 2024-05-06 00:39:48 +09:00
parent 471776c3ab
commit c9a684dd7c

View file

@ -0,0 +1,12 @@
#!/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."