dotfiles/deploy.sh

10 lines
353 B
Bash
Raw Normal View History

2024-01-16 18:40:25 -06:00
#!/bin/bash
echo "Syncing user with alacritty..."
rsync --delete --recursive $(dirname "$0")/alacritty/ ~/.config/alacritty
2024-01-16 18:40:25 -06:00
echo "Syncing user with hypr..."
rsync --delete --recursive $(dirname "$0")/hypr/ ~/.config/hypr
2024-01-16 18:40:25 -06:00
echo "Syncing user with waybar..."
rsync --delete --recursive $(dirname "$0")/waybar/ ~/.config/waybar
2024-01-16 18:40:25 -06:00
echo "Syncing complete!"