This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # script name: install_waydroid.sh | |
| # description: Install Waydroid on unsupported Debian based distro caused by incompatible python3-gbinder package | |
| # related to : https://github.com/waydroid/waydroid/issues/214#issuecomment-1120926304 | |
| # author : Wachid Adi Nugroho <wachidadinugroho.maya@gmail.com> | |
| # date : 2022-07-07 | |
| export distro=$(grep -oP '(?<=^NAME=).*' /etc/os-release) | |
| if [[ -f /usr/bin/dpkg ]]; |