2022-05-21 02:30:05 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Configuration BASH
|
|
|
|
|
|
|
|
if [[ ! -d ~/.bash ]]
|
|
|
|
then
|
|
|
|
git clone --recursive https://github.com/xlogerais/config-bash.git ~/.bash
|
|
|
|
bash ~/.bash/create-links.bash
|
|
|
|
fi
|
|
|
|
|
2024-02-04 16:06:13 +01:00
|
|
|
for file in config.d/*.bash
|
|
|
|
do
|
|
|
|
bash $file
|
|
|
|
done
|
2022-05-21 02:30:05 +02:00
|
|
|
|