mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
16 lines
209 B
Bash
Executable file
16 lines
209 B
Bash
Executable file
#!/bin/bash
|
|
|
|
BASE_PATH=$(dirname $(readlink -f $BASH_SOURCE))
|
|
|
|
DIRECTORIES=(
|
|
fish
|
|
kitty
|
|
i3
|
|
i3status
|
|
rofi
|
|
smartgit
|
|
)
|
|
|
|
for target in ${DIRECTORIES[@]}; do
|
|
ln -sfr -t $HOME/.config $BASE_PATH/$target
|
|
done
|