Bazzite
To install the client app, you will need to use distrobox which allows us to install packages from other distributions inside a container.
The first thing you’ll need to do is open a terminal application. In the terminal, you need to create a distrobox container. This container will be created using the archlinux image.
# Create the distrobox container called drop-appdistrobox create --image archlinux drop-appdistrobox enter drop-appIt will take a few seconds to prepare the container.
Once ready, you need to install the yay package manager to be able to install packages from the AUR.
# This enables the multilib repository which is needed to install umu-launcher and drop-appsudo sh -c 'printf "\n\n[multilib]\nInclude = /etc/pacman.d/mirrorlist\n" >> /etc/pacman.conf'# Updates repositories and systemsudo pacman -Syu --noconfirmsudo pacman -S --needed --noconfirm base-devel gitgit clone https://aur.archlinux.org/yay.gitcd yay# This will build and install yaymakepkg -si --noconfirm# We can now delete the yay foldercd .. && rm -rf ./yayNext, you can install dependencies:
yay -S --noconfirm gnu-free-fontsThen you will need to install a vulkan driver. If you are using an Intel GPU, you can run:
yay -S --noconfirm lib32-vulkan-intelIf you are using an AMD GPU, you can run:
yay -S --noconfirm lib32-vulkan-radeonThen you can install drop-app:
yay -S --noconfirm drop-oss-app-bindistrobox-export --app drop-app# Go back to BazziteexitThe drop-app application should be appear in your application menu.
Update drop-app
Section titled “Update drop-app”In the terminal, you need to enter the drop-app container and update system packages within in.
distrobox enter drop-appyayexitUninstall the drop-app client
Section titled “Uninstall the drop-app client”The following command will delete the distrobox container and delete the drop-app application from your system.
distrobox rm drop-app --force