aboutsummaryrefslogtreecommitdiffstats
path: root/community/anbox/anbox-launch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'community/anbox/anbox-launch.sh')
-rw-r--r--community/anbox/anbox-launch.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/community/anbox/anbox-launch.sh b/community/anbox/anbox-launch.sh
deleted file mode 100644
index ce5286a8dfc..00000000000
--- a/community/anbox/anbox-launch.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-# https://gitlab.com/postmarketOS/pmaports/-/issues/479
-# EGL_PLATFORM=wayland is broken on desktop as
-# Anbox require PBuffer support but Wayland EGL
-# doesn't provide it. Unsetting this value
-# unbreaks Anbox on e.g. Plasma Mobile.
-if [ "$EGL_PLATFORM" = wayland ]; then
- export EGL_PLATFORM
- unset EGL_PLATFORM
-fi
-
-# This breaks Anbox display if EGL_PLATFORM is not
-# set to wayland. Since EGL_PLATFORM is never set
-# to wayland, let's unset SDL_VIDEODRIVER if it is.
-if [ "$SDL_VIDEODRIVER" = wayland ]; then
- export SDL_VIDEODRIVER
- unset SDL_VIDEODRIVER
-fi
-
-# We let Anbox autostart the session manager as this
-# provides a splash-screen
-anbox launch --package=org.anbox.appmgr --component=org.anbox.appmgr.AppViewActivity