mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-02-25 12:41:00 +00:00
36 lines
1.0 KiB
Bash
Executable File
36 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
source /etc/default/waydroid-launcher
|
|
source /etc/default/steamos-nested-desktop
|
|
|
|
# Kill any previous remnants
|
|
if [ "$(systemctl is-active waydroid-container.service)" == 'active' ]; then
|
|
pkexec /usr/libexec/waydroid-container-stop
|
|
fi
|
|
|
|
# Check if Waydroid is initialized, initialize if not
|
|
if grep -qz 'not initialized' <<< $(/usr/bin/waydroid status); then
|
|
/usr/bin/ujust init-waydroid
|
|
fi
|
|
|
|
# Launch Weston
|
|
killall -9 weston
|
|
pkexec /usr/libexec/waydroid-container-start
|
|
if [ -z "$(pgrep wlr-randr)" ]; then
|
|
cage -- bash -c "wlr-randr --output X11-1 --custom-mode ${STEAMOS_NESTED_DESKTOP_WIDTH:-1280}x${STEAMOS_NESTED_DESKTOP_HEIGHT:-800}; sleep 1; waydroid show-full-ui &> /dev/null &"
|
|
fi
|
|
|
|
# Fix controllers, we know Waydroid has started because surfaceflinger is running
|
|
while [ "" == "$(pgrep surfaceflinger)" ]; do
|
|
sleep 1
|
|
done
|
|
pkexec /usr/libexec/waydroid-fix-controllers
|
|
|
|
# Waydroid is now live!
|
|
# Wait for exit and then clean up
|
|
while [ -n "$(pgrep weston)" ]; do
|
|
sleep 1
|
|
done
|
|
|
|
pkexec /usr/libexec/waydroid-container-stop
|