A Simple Method to Automatically Back Up Snapshots (Tabs, Windows) to the Cloud (e.g., Dropbox) #1497
davidleejy
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi fellow Sidebery users,
Through this write-up, I'd like to share a simple method I discovered for backing up Firefox tabs and windows as Sidebery snapshots to the cloud. (A snapshot is a record of opened Firefox tabs and windows)
Motivation
As at writing this in early 2024, backing up snapshots isn't trivial because:
Sidebery can only automatically create snapshots in the Downloads directory which is separate from directories that cloud services are synchronizing. As such, snapshots being created in this manner aren't synchronized to any cloud.
Sidebery's Sync isn't able to sync tabs & windows. It only syncs settings, context menu settings, styles, and keybindings (to the user's Firefox profile).
Aside from scheduling a chron job, a simple and elegant method to synchronize tabs and windows I discovered is as follows.
Method
The main idea behind my method is to have Sidebery automatically create snapshots at regular intervals in a location that's really a softlink to a directory residing in your cloud directory.
Here are the steps:
Step 1. Create a directory in your cloud directory that is intended to house snapshots. I named this directory
sidebery-snapshots
. You may name this however you please.Step 2. Create a softlink in the Downloads directory that's linked to
sidebery-snapshots
by executing this terminal command:Executing this terminal command creates a softlink named
sidebery-snapshots-do-not-delete
in theDownloads
directory that's linked tosidebery-snapshots
directory.Step 3. Access Sidebery's settings to configure Sidebery to (automatically) create snapshots in
~/Downloads/sidebery-snapshots-do-not-delete
at regular intervals. This step is illustrated in this screenshot:And that's it, we're done. 😃
Now, whenever Sidebery writes files to directory
sidebery-snapshots-do-not-delete
(located inDownloads
), these files are in fact written to directoryDropbox/sidebery-snapshots
which is constantly being synchronized to my Dropbox cloud.This method should work for other cloud service providers (e.g., Windows OneDrive, Google Cloud).
Beta Was this translation helpful? Give feedback.
All reactions