dotfiles/update.sh
2024-07-29 04:01:30 -05:00

16 lines
428 B
Bash
Executable File

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