Add repository if not present for other configurations
This commit is contained in:
parent
d79c0d00f4
commit
190ec82dfb
|
@ -0,0 +1,23 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
cd ~/.config/
|
||||||
|
|
||||||
|
if [ ! -d "hypr" ]; then
|
||||||
|
git clone git@git.nickr.eu:ArchConfig/hypr
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d "waybar" ]; then
|
||||||
|
git clone git@git.nickr.eu:ArchConfig/waybar
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d "nvim" ]; then
|
||||||
|
git clone git@git.nickr.eu:yannickreiss/nvim
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d "wofi" ]; then
|
||||||
|
git clone git@git.nickr.eu:ArchConfig/wofi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d "kitty" ]; then
|
||||||
|
git clone git@git.nickr.eu:ArchConfig/kitty
|
||||||
|
fi
|
Loading…
Reference in New Issue