diff options
author | Marc Coquand <marc@mccd.space> | 2024-10-22 11:07:59 +0300 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-10-22 11:07:59 +0300 |
commit | e24f418e3499afd1e9e529b8656a35376e69f52a (patch) | |
tree | 90e01f42d46dec91e3a6cace4de6d089152fad29 /home/dots/.local/bin/org-sync | |
download | guix-e24f418e3499afd1e9e529b8656a35376e69f52a.tar.gz guix-e24f418e3499afd1e9e529b8656a35376e69f52a.tar.bz2 guix-e24f418e3499afd1e9e529b8656a35376e69f52a.zip |
initial commit
Diffstat (limited to 'home/dots/.local/bin/org-sync')
-rwxr-xr-x | home/dots/.local/bin/org-sync | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/home/dots/.local/bin/org-sync b/home/dots/.local/bin/org-sync new file mode 100755 index 0000000..47474e6 --- /dev/null +++ b/home/dots/.local/bin/org-sync @@ -0,0 +1,11 @@ +#!/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 + /usr/bin/env rclone bisync storage:personal-db ~/personal-db; + echo "Sync complete"; +fi |