some meow
This commit is contained in:
Executable
+19
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user