13 lines
299 B
Bash
Executable File
13 lines
299 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -e "$HOME/.tmux" ] ; then
|
|
mv "$HOME/.tmux" "$HOME/.tmux-original-$(date +%s)"
|
|
fi
|
|
|
|
if [ -e "$HOME/.tmux.conf" ] ; then
|
|
mv "$HOME/.tmux.conf" "$HOME/.tmux.conf-original-$(date +%s)"
|
|
fi
|
|
|
|
ln -s "$HOME/.config/tmux" "$HOME/.tmux"
|
|
ln -s "$HOME/.config/tmux/tmux.conf" "$HOME/.tmux.conf"
|