From af50b1b9bde653f73ad78108d08f192e42d7dda3 Mon Sep 17 00:00:00 2001 From: Marc Coquand Date: Sun, 20 Oct 2024 19:20:55 +0300 Subject: . --- local/bin/org-sync | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 local/bin/org-sync (limited to 'local/bin/org-sync') 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 -- cgit v1.2.3