add install script
This commit is contained in:
parent
313eba3dc4
commit
fe96310282
|
@ -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
|
Loading…
Reference in New Issue