dotfiles/scripts/manager.bash
2024-10-07 22:34:12 +01:00

14 lines
256 B
Bash
Executable File

#!/bin/bash
cd ~/Code/dotfiles
git pull
folders=("hypr" "ags" "tmux" "lazygit" "kitty" "fish" "nvim")
for folder in ${folders[@]}; do
echo Moving $folder
rsync -a ./$folder/ ~/.config/$folder
done
# Starship
cp starship.toml ~/.config/starship.toml