From fafe78d80fd54979157980ac85c33e04326b63c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Saull=20Brand=C3=A3o?= Date: Sun, 20 Jul 2025 19:40:45 -0300 Subject: [PATCH] add missing installation of zoom (#262) --- install/xtras.sh | 3 +++ migrations/1752983008.sh | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 migrations/1752983008.sh diff --git a/install/xtras.sh b/install/xtras.sh index 87ae18c..cb57512 100644 --- a/install/xtras.sh +++ b/install/xtras.sh @@ -12,6 +12,9 @@ if [ -z "$OMARCHY_BARE" ]; then yay -S --noconfirm --needed typora || echo -e "\e[31mFailed to install Typora. Continuing without!\e[0m" + yay -S --noconfirm --needed zoom || + echo -e "\e[31mFailed to install Zoom. Continuing without!\e[0m" + yay -S --noconfirm --needed dropbox libappindicator-gtk3 python-gpgme nautilus-dropbox || echo -e "\e[31mFailed to install Dropbox. Continuing without!\e[0m" diff --git a/migrations/1752983008.sh b/migrations/1752983008.sh new file mode 100644 index 0000000..8f0727b --- /dev/null +++ b/migrations/1752983008.sh @@ -0,0 +1,4 @@ +if ! command -v zoom &>/dev/null; then + echo "Add missing installation of Zoom" + yay -S --noconfirm --needed zoom +fi