mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-11 19:45:25 +03:00
13 lines
335 B
Bash
Executable file
13 lines
335 B
Bash
Executable file
#!/usr/bin/env bash
|
|
LINKS=(
|
|
"$HOME/.config/tridactyl/themes $HOME/themes"
|
|
"$HOME/.config/tridactyl/.tridactylrc $HOME/.tridactylrc"
|
|
"$HOME/.config/vnstat/.vnstatrc $HOME/.vnstatrc"
|
|
"$HOME/.config/vim/vimrc $HOME/.vimrc"
|
|
)
|
|
for item in "${LINKS[@]}"
|
|
do
|
|
ln -svf $item
|
|
done
|
|
|
|
# ln -s ~/.config/tridactyl/themes ~/themes
|