1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

symlink.sh: link scripts

This commit is contained in:
Henrik Hautakoski 2024-04-03 20:37:45 +02:00
parent 6503407cc8
commit 6dd8f632ad

View file

@ -16,5 +16,9 @@ for target in ${DIRECTORIES[@]}; do
ln -sfr -t $HOME/.config $BASE_PATH/$target
done
ln -sfr $BASE_PATH/tmux.conf $HOME/.tmux.conf
ln -sfr $BASE_PATH/Xresources $HOME/.Xresources
ln -sfr $BASE_PATH/tmux.conf $HOME/.tmux.conf
ln -sfr $BASE_PATH/Xresources $HOME/.Xresources
for script in $(find $BASE_PATH/scripts -type f); do
ln -sfr $script $HOME/bin/$(basename $script)
done