dot/make-symlinks.sh

17 lines
264 B
Bash
Raw Permalink Normal View History

2022-10-28 00:46:16 +00:00
#!/run/current-system/sw/bin/bash
dir=~/dot
backup=~/.backup
2023-02-17 05:53:47 +00:00
files="alacritty dunst fish i3 newsboat i3status-rust rofi rofimoji.rc helix"
2022-10-28 00:46:16 +00:00
##########
mkdir -p $backup
for file in $files; do
mv ~/.config/$file $backup
2022-10-28 14:04:05 +00:00
ln -s $dir/$file ~/.config/
2022-10-28 00:46:16 +00:00
done