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

install.sh: format fixes

This commit is contained in:
Henrik Hautakoski 2024-06-08 16:50:43 +02:00
parent fc6be19a2d
commit a40dec6595

View file

@ -3,18 +3,18 @@
BASE_PATH=$(dirname $(readlink -f $BASH_SOURCE))
DIRECTORIES=(
nvim
fish
alacritty
i3
i3status
rofi
smartgit
nvim
fish
alacritty
i3
i3status
rofi
smartgit
lazygit
)
for target in ${DIRECTORIES[@]}; do
ln -sfr -t $HOME/.config $BASE_PATH/$target
ln -sfr -t $HOME/.config $BASE_PATH/$target
done
ln -sfr $BASE_PATH/tmux.conf $HOME/.tmux.conf
@ -22,5 +22,5 @@ ln -sfr $BASE_PATH/Xresources $HOME/.Xresources
mkdir -p $HOME/bin
for script in $(find $BASE_PATH/scripts -type f); do
ln -sfr $script $HOME/bin/$(basename $script)
ln -sfr $script $HOME/bin/$(basename $script)
done