SteamOS (Steam Deck)
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 drop and its dependencies:
yay -S --noconfirm gnu-free-fontsyay -S --noconfirm drop-oss-app-binOnce the installation is complete, you will need to export drop-app to SteamOS.
distrobox-export --app drop-app# Go back to SteamOSexitThe drop-app application should be appear in your application menu.
Run games
Section titled “Run games”You can start games while in Desktop Mode, but the controller will not be fully working. It is recommended to add Drop app as a “Non Steam Game” in Steam in Desktop Mode. Once added, you can go to Gaming Mode and start Drop App from the “Non Steam Games” tab in the library. It might take a few seconds to startup. Once loaded, you can use the touch screen to find the game you want to play and then tap “Run”.
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