dotfiles/update.sh

11 lines
380 B
Bash
Raw Normal View History

2024-01-16 18:22:14 -06:00
#!/bin/bash
2024-01-16 18:25:48 -06:00
echo "Syncing dotfiles with alacritty..."
2024-01-16 18:22:14 -06:00
rsync --recursive ~/.config/alacritty $(dirname "$0")
2024-01-16 18:25:48 -06:00
echo "Syncing dotfiles with hypr..."
rsync --recursive ~/.config/hypr $(dirname "$0")
2024-01-16 18:32:22 -06:00
echo "Syncing dotfiles with nvim..."
rsync --recursive ~/.config/nvim $(dirname "$0")
2024-01-16 19:05:19 -06:00
echo "Syncing dotfiles with tmux..."
rsync ~/.config/tmux/tmux.conf $(dirname "$0")/tmux/tmux.conf