tmux-config/install.sh
2021-05-06 14:20:07 -04:00

13 lines
181 B
Bash
Executable File

#!/usr/bin/env bash
script_path=`dirname $(realpath $0)`
# Install files
rm ~/.tmux.conf
cp ${script_path}/.tmux.conf ~/
# Restart
tmux kill-server
echo "Installed tmux config"