diff --git a/builds/utils/sh/is_school b/builds/utils/sh/is_school new file mode 100755 index 0000000..3c11bf8 --- /dev/null +++ b/builds/utils/sh/is_school @@ -0,0 +1,3 @@ +cssid=$(nmcli -t -f IN-USE,SSID device wifi list | grep '^\*' | awk -F':' '{print $2}') + +[ "WCS-BYOT" = "$cssid" ] diff --git a/builds/utils/sh/sync b/builds/utils/sh/sync new file mode 100755 index 0000000..4bc8b6c --- /dev/null +++ b/builds/utils/sh/sync @@ -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