dotfiles/deploy.sh

16 lines
587 B
Bash
Raw Normal View History

2024-01-16 18:40:25 -06:00
#!/bin/bash
echo "Syncing user with alacritty..."
rsync --recursive $(dirname "$0")/alacritty/ ~/.config/alacritty
echo "Syncing user with hypr..."
rsync --recursive $(dirname "$0")/hypr/ ~/.config/hypr
echo "Syncing user with nvim..."
rsync --recursive $(dirname "$0")/nvim/ ~/.config/nvim
2024-01-16 19:05:19 -06:00
echo "Syncing user with tmux..."
echo " Note: prefix + I for tmux setup"
2024-01-16 20:03:50 -06:00
mkdir -p ~/.config/tmux
2024-01-16 19:05:19 -06:00
rsync --recursive $(dirname "$0")/tmux/tmux.conf ~/.config/tmux/tmux.conf
2024-01-16 18:40:25 -06:00
echo "Syncing user with waybar..."
rsync --recursive $(dirname "$0")/waybar/ ~/.config/waybar
echo "Syncing complete!"