ryanrudolfoba / SteamOS-Waydroid-Installer

Script to easily install / uninstall Android via Waydroid on the Steam Deck running on SteamOS.
https://www.youtube.com/watch?v=06T-h-jPVx8
480 stars 29 forks source link

Individual Start Menu Shortcuts Can Work In Desktop Mode #144

Closed DanielLester83 closed 3 weeks ago

DanielLester83 commented 3 months ago

I figured out how to make the shortcuts work.

  1. Make a script at /home/deck/Android_Waydroid/Wrapper/waydroid `#!/bin/bash

if [ $1 = "app" ] && [ $2 = "launch" ] then /home/deck/Android_Waydroid/Android_Waydroid_Cage.sh $3 else /usr/bin/waydroid "$@" fi`

  1. chmod +x /home/deck/Android_Waydroid/Wrapper/waydroid

  2. make a path changer as root at /etc/profile.d/Waydroid.sh `#!/bin/sh

export PATH="/home/deck/Android_Waydroid/Wrapper/:$PATH"`

  1. restart all shells/reboot

Some issues are that all lock screens and launch on startup apps will still open first if any are enabled.

An odd sound plays when it boots, possible hardware initialization.

Also the notification pull down appears at launch

ryanrudolfoba commented 3 weeks ago

updated the README to reflect this info