9 lines
281 B
Bash
Executable File
9 lines
281 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Syncing dotfiles with alacritty..."
|
|
rsync --recursive ~/.config/alacritty $(dirname "$0")
|
|
echo "Syncing dotfiles with hypr..."
|
|
rsync --recursive ~/.config/hypr $(dirname "$0")
|
|
echo "Syncing dotfiles with nvim..."
|
|
rsync --recursive ~/.config/nvim $(dirname "$0")
|