Make stowed packages an array in artix-install.sh

This commit is contained in:
the_4n0nym0u53 2022-01-08 18:43:03 +01:00 committed by GitHub
parent 67eac27d79
commit aea7679e8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,12 +13,11 @@ sleep 0.5
echo "Creating the symlinks with stow..."
for dir in *; do
if [ -d "$dir" ]; then
echo "* Symlinking $dir"
stow -t "$HOME" --ignore="README.md" "$dir"
sleep 0.1
fi
set -- "alacritty" "mako" "nvim" "scripts" "sway" "swaylock" "swaynag" "waybar" "zsh"
for pkg in $PKGS; do
echo "* Stowing $pkg"
stow -t "$HOME" --ignore="README.md" "$pkg"
sleep 0.1
done
sleep 0.4