This commit is contained in:
nichkara
2026-02-01 22:40:33 +01:00
commit 60b28cbadb
26 changed files with 360 additions and 0 deletions

52
pure_setup.sh Executable file
View File

@@ -0,0 +1,52 @@
#!/bin/bash
set -x
cd ~/.config/
if [ ! -d "hypr" ]; then
git clone git@git.nickr.eu:ArchConfig/hypr
else
cd hypr
git pull
cd ..
fi
if [ ! -d "waybar" ]; then
git clone git@git.nickr.eu:ArchConfig/waybar
else
cd hypr
git pull
cd ..
fi
if [ ! -d "nvim" ]; then
git clone git@git.nickr.eu:yannickreiss/nvim
else
cd nvim
git pull
cd ..
fi
if [ ! -d "wofi" ]; then
git clone git@git.nickr.eu:ArchConfig/wofi
else
cd wofi
git pull
cd ..
fi
if [ ! -d "kitty" ]; then
git clone git@git.nickr.eu:ArchConfig/kitty
else
cd kitty
git pull
cd ..
fi
if [ ! -d "evolution" ]; then
git clone git@git.nickr.eu:ArchConfig/evolution
else
cd evolution
git pull
cd ..
fi