We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On my Arch system, installation fails because of this function:
#Function for arch gapps prompt gapps_arch(){ read -p $'\e[32m[\e[35m+\e[32m] \e[1;32mDo you want gapps installed (y/n/o[yes/no/offline] - default:- n):\e[0m' gapps if [[ $gapps == "n" || $gapps == "N" ]]; then echo -e "\e[32m[\e[35m+\e[32m] \e[1;36msetting up waydroid\e[0m" sudo yay -S waydroid && waydroid init elif [[ $gapps == "y" || $gapps == "Y" ]]; then echo -e "\e[32m[\e[35m+\e[32m] \e[1;36msetting up waydroid\e[0m" sudo yay -S waydroid && waydroid init -s GAPPS elif [[ $gapps == "" ]]; then echo -e"\e[1;32mInstalling default\e[0m" sudo yay -S waydroid && waydroid init elif [[ $gapps == "o" || $gapps == "O" ]]; then offline else echo -e "\e[32m[\e[35m-\e[32m] \e[1;36minvalid option !!!, restarting now....." sleep 1 gapps_arch fi }
It says that 'init' must be run as root, therefore I changed it to:
#Function for arch gapps prompt gapps_arch(){ read -p $'\e[32m[\e[35m+\e[32m] \e[1;32mDo you want gapps installed (y/n/o[yes/no/offline] - default:- n):\e[0m' gapps if [[ $gapps == "n" || $gapps == "N" ]]; then echo -e "\e[32m[\e[35m+\e[32m] \e[1;36msetting up waydroid\e[0m" sudo yay -S waydroid && sudo waydroid init elif [[ $gapps == "y" || $gapps == "Y" ]]; then echo -e "\e[32m[\e[35m+\e[32m] \e[1;36msetting up waydroid\e[0m" sudo yay -S waydroid && sudo waydroid init -s GAPPS elif [[ $gapps == "" ]]; then echo -e"\e[1;32mInstalling default\e[0m" sudo yay -S waydroid && sudo waydroid init elif [[ $gapps == "o" || $gapps == "O" ]]; then offline else echo -e "\e[32m[\e[35m-\e[32m] \e[1;36minvalid option !!!, restarting now....." sleep 1 gapps_arch fi }
The text was updated successfully, but these errors were encountered:
Did it work for you?
Sorry, something went wrong.
kindly make a pr for these change to be merge
No branches or pull requests
On my Arch system, installation fails because of this function:
It says that 'init' must be run as root, therefore I changed it to:
The text was updated successfully, but these errors were encountered: