blob: bd87a10a3b2c23d01ac4975b60e72effe0471e1c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env sh
IS_CONNECTED=$(nmcli | grep -e ^wlp610s0)
if $(echo $IS_CONNECTED | grep -q "disconnected")
then
echo "System is not connected to Wifi. Will not sync";
else
~/go/bin/rclone sync ~/personal-db storage:personal-db;
fi
|