mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 12:19:24 +00:00
7 lines
283 B
Bash
7 lines
283 B
Bash
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
|