Add hypr config

This commit is contained in:
2025-10-17 19:49:16 +02:00
parent 4bda1db68d
commit 94cf2090e9
3 changed files with 576 additions and 0 deletions

13
config/import.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
find . -type f | while read -r file; do
filename=${file#./}
if [[ -f ~/.config/$filename ]]; then
diff $file ~/.config/$filename > /dev/null
if [[ $? -ne 0 ]]; then
cp -u ~/.config/$filename ./$filename
echo "File '$filename' has changed."
fi
fi
done