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