From f781a805c9bce9098b97ec3ef2ea0f0895f2f9f8 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 20 Jul 2025 21:19:34 -0500 Subject: [PATCH] Install missing Dropbox dependencies if Dropbox is there --- migrations/1753064164.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 migrations/1753064164.sh diff --git a/migrations/1753064164.sh b/migrations/1753064164.sh new file mode 100644 index 0000000..8ac2757 --- /dev/null +++ b/migrations/1753064164.sh @@ -0,0 +1,6 @@ +echo "Add missing Dropbox dependencies" + +# Dropbox is still there, but the dependencies aren't yet +if command -v dropbox-cli &>/dev/null && ! pacman -Q libappindicator-gtk3 &>/dev/null; then + yay -S --noconfirm --needed dropbox libappindicator-gtk3 python-gpgme nautilus-dropbox +fi