add missing installation of zoom (#262)

This commit is contained in:
Saull Brandão
2025-07-20 19:40:45 -03:00
committed by GitHub
parent 9b8569e537
commit fafe78d80f
2 changed files with 7 additions and 0 deletions

View File

@ -12,6 +12,9 @@ if [ -z "$OMARCHY_BARE" ]; then
yay -S --noconfirm --needed typora || yay -S --noconfirm --needed typora ||
echo -e "\e[31mFailed to install Typora. Continuing without!\e[0m" 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 || yay -S --noconfirm --needed dropbox libappindicator-gtk3 python-gpgme nautilus-dropbox ||
echo -e "\e[31mFailed to install Dropbox. Continuing without!\e[0m" echo -e "\e[31mFailed to install Dropbox. Continuing without!\e[0m"

4
migrations/1752983008.sh Normal file
View File

@ -0,0 +1,4 @@
if ! command -v zoom &>/dev/null; then
echo "Add missing installation of Zoom"
yay -S --noconfirm --needed zoom
fi