#!/usr/bin/env bash
git submodule update --init --recursive
dotfiles=(
alacritty
bash
bat
bin
dunst
git
gtk-3.0
lazygit
nvim
oxwm
rofi
ssh
starship
tmux
xinitrc
local_bin
)
for f in "${dotfiles[@]}"; do
if [ -d "$f" ]; then
stow -R -t "$HOME" "$f"
fi
done