diff options
author | Marc Coquand <marc@mccd.space> | 2024-10-20 19:20:55 +0300 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-10-20 19:20:55 +0300 |
commit | af50b1b9bde653f73ad78108d08f192e42d7dda3 (patch) | |
tree | 7b65ba91202d47823a76691015880fa8893c7f70 /local/bin/org-sync | |
parent | fc5cf7ae1db9556e16b24c34c8bd6d6d99c8fc71 (diff) | |
download | bsd-af50b1b9bde653f73ad78108d08f192e42d7dda3.tar.gz bsd-af50b1b9bde653f73ad78108d08f192e42d7dda3.tar.bz2 bsd-af50b1b9bde653f73ad78108d08f192e42d7dda3.zip |
.
Diffstat (limited to 'local/bin/org-sync')
-rwxr-xr-x | local/bin/org-sync | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/local/bin/org-sync b/local/bin/org-sync new file mode 100755 index 0000000..cc66681 --- /dev/null +++ b/local/bin/org-sync @@ -0,0 +1,11 @@ +#!/bin/env sh + +IS_CONNECTED=$(iwctl station wlp61s0 show | grep "State") + +if $(echo $IS_CONNECTED | grep -q "disconnected") +then + echo "System is not connected to Wifi. Will not sync"; +else + /usr/bin/rclone bisync storage.mccd.space:personal-db ~/personal-db; + echo "Sync complete"; +fi |