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