blob: bcd7bed0d71d23b6b7bf8fa2eb4fb907b13998e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#!/bin/bash
# If git is working in other process, then don't sync again
pidof git >/dev/null && exit 0
# my repo
sync() {
{
cd $1 && [[ -n `git remote -v` ]] || return
} 2>/dev/null
GIT_SSH_COMMAND="ssh -o ControlMaster=no" git pull --quiet || echo Has trouble when syncing `pwd`
}
sync $SETTING_DIR &
sync ~/log &
sync ~/blog &
sync ~/git/vps &
sync ~/.task &
sync ~/.password-store &
sync ~/.vim/vim-init &
sync ~/bean &
while true; do
if test $(jobs -r | wc -l) -gt 0; then
sleep 1;
else
which notify-send &>/dev/null && notify-send 'Repos synced'
break
fi
done &
# others repo
#check_upstream ~/git/tig || echo in `pwd` >/dev/tty &
# thunderbird
#if [[ `cat /etc/hostname` != 'vultr' ]]; then
# rsync -a pham@topo.tw:~/.thunderbird/ ~/.thunderbird &
#fi
|