some meow

This commit is contained in:
ITQ
2026-03-21 20:19:08 +03:00
parent 02476899b4
commit b66724d51e
11 changed files with 195 additions and 27 deletions
Executable
+19
View File
@@ -0,0 +1,19 @@
#!/usr/bin/env bash
targets=(
.zshrc
.yabairc
.skhdrc
.gitmessage.txt
.gitconfig
.zshrc.d
.wezterm.lua
.config/nvim
.config/tmux
)
prefix=~/dotfiles
for target in "${targets[@]}"; do
ln -s $prefix/$target ~/$target 2>/dev/null && echo Symlink ~/$target added || echo Symlink ~/$target already exist
done