dotfiles/deploy.sh

10 lines
353 B
Bash
Executable File

#!/bin/bash
echo "Syncing user with alacritty..."
rsync --delete --recursive $(dirname "$0")/alacritty/ ~/.config/alacritty
echo "Syncing user with hypr..."
rsync --delete --recursive $(dirname "$0")/hypr/ ~/.config/hypr
echo "Syncing user with waybar..."
rsync --delete --recursive $(dirname "$0")/waybar/ ~/.config/waybar
echo "Syncing complete!"