add new sync script
This commit is contained in:
parent
275fa01164
commit
f2d4c7c364
|
@ -0,0 +1,3 @@
|
|||
cssid=$(nmcli -t -f IN-USE,SSID device wifi list | grep '^\*' | awk -F':' '{print $2}')
|
||||
|
||||
[ "WCS-BYOT" = "$cssid" ]
|
|
@ -0,0 +1,11 @@
|
|||
is_school && echo "enable the vpn"
|
||||
mbsync --config=$HOME/.config/isync/config main
|
||||
vdirsyncer sync
|
||||
rbw sync
|
||||
|
||||
# check if we have new mail, and if so, notify
|
||||
new=$(ls ~/Mail/main/INBOX/new | wc -l)
|
||||
if [ "$new" -gt 0 ]; then
|
||||
inbox=$(ls ~/Mail/main/INBOX/cur | wc -l)
|
||||
printf "%i new email(s); %i total in inbox" "$new" "$inbox" > ~/.cache/statusbar_notification
|
||||
fi
|
Loading…
Reference in New Issue