blob: 1a0675a8189e6bb32325a06e65e2eb82ce03d1a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
TIMESTAMP=$(date +"%T on %D")
rsync -av --delete ~/.config/nvim/ ~/.config/dotfiles/nvim
rsync -av --delete ~/.config/mpd/ ~/.config/dotfiles/mpd
rsync -av --delete ~/.config/dunst/ ~/.config/dotfiles/dunst
rsync -av --delete ~/.config/zathura/ ~/.config/dotfiles/zathura
cp -r ~/.config/X11/Xresources ~/.config/dotfiles/Xresources
cd ~/.config/dotfiles && git add .
git commit -m "automated commit at ($TIMESTAMP)"
git push myserver master
|