automatic installation

This commit is contained in:
simon987 2021-05-06 14:20:07 -04:00
parent 235b580673
commit 3dbbf493f0
2 changed files with 16 additions and 0 deletions

4
README.md Normal file
View File

@ -0,0 +1,4 @@
```bash
git clone https://github.com/simon987/tmux-config /tmp/tmux-conf/ && /tmp/tmux-conf/install.sh
```

12
install.sh Executable file
View File

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