Initial upload

This commit is contained in:
2025-03-18 19:37:20 +00:00
commit f9ba12fe93
10 changed files with 205 additions and 0 deletions

7
Makefile Normal file
View File

@@ -0,0 +1,7 @@
.PHONY: zsh
zsh:
@for file in zsh/.[!.]*; do \
file=$${file#zsh/}; \
[ -f "$$HOME/$$file" ] && mv "$$HOME/$$file" "$$HOME/$$file.bak"; \
done && cp -r zsh/.[!.]* ~/ && echo "zsh files copied to home directory" || echo "zsh files not copied to home directory"