Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions bin/omarchy-install-service-dropbox
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

# omarchy:summary=Install and start the Dropbox service. Must then be authenticated via the web.

set -e

# Everything below needs dropbox-cli, which only exists as an AUR package built
# around Dropbox's x86_64-only daemon. When the repos cannot serve it there is
# no Dropbox to start — say so instead of enabling a bar widget for nothing.
if ! omarchy-pkg-present dropbox-cli && ! pacman -Si dropbox-cli &>/dev/null; then
echo "Dropbox is not available on this system (no aarch64 build exists)."
exit 1
fi

echo "Installing all dependencies..."
omarchy-pkg-add dropbox dropbox-cli libappindicator-gtk3 python-gpgme nautilus-dropbox

Expand Down
Loading