mirror of
https://github.com/simon987/tmux-config.git
synced 2025-04-08 05:06:43 +00:00
13 lines
181 B
Bash
Executable File
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"
|