10 lines
179 B
Bash
10 lines
179 B
Bash
#!/bin/bash
|
|
|
|
# Configuration TMUX
|
|
|
|
if [[ ! -d ~/.tmux ]]
|
|
then
|
|
git clone --recursive https://github.com/xlogerais/config-tmux.git ~/.tmux
|
|
bash ~/.tmux/create-links.bash
|
|
fi
|