14 lines
228 B
Bash
14 lines
228 B
Bash
#!/bin/bash
|
|
|
|
folders=("hypr" "ags" "tmux" "lazygit" "kitty" "fish")
|
|
|
|
cd ..
|
|
|
|
for folder in ${folders[@]}; do
|
|
echo Moving $folder
|
|
rsync -a ./$folder/ ~/.config/$folder
|
|
done
|
|
|
|
# Starship
|
|
mv starship.toml ~/.config/starship.toml
|