summaryrefslogtreecommitdiffstats
path: root/core/modules/vmware12/data/opt/openslx/bin/vmplayer
diff options
context:
space:
mode:
authorSimon Rettberg2017-11-20 18:25:48 +0100
committerYour Name2017-11-20 18:25:48 +0100
commitf40674d631da306db2e9263adf7eecf5e4c2598e (patch)
tree1258f2adc937a08784ce881485f75cd553260ec2 /core/modules/vmware12/data/opt/openslx/bin/vmplayer
parent[inc/chroot] Improbe unmount logic ;) (diff)
downloadmltk-f40674d631da306db2e9263adf7eecf5e4c2598e.tar.gz
mltk-f40674d631da306db2e9263adf7eecf5e4c2598e.tar.xz
mltk-f40674d631da306db2e9263adf7eecf5e4c2598e.zip
[vmware12] Split vmware module into 12 and 14 until 14 is stable
Diffstat (limited to 'core/modules/vmware12/data/opt/openslx/bin/vmplayer')
-rwxr-xr-xcore/modules/vmware12/data/opt/openslx/bin/vmplayer16
1 files changed, 16 insertions, 0 deletions
diff --git a/core/modules/vmware12/data/opt/openslx/bin/vmplayer b/core/modules/vmware12/data/opt/openslx/bin/vmplayer
new file mode 100755
index 00000000..05a4ec3a
--- /dev/null
+++ b/core/modules/vmware12/data/opt/openslx/bin/vmplayer
@@ -0,0 +1,16 @@
+#!/bin/ash
+# radically simplified version of the original script vmplayer by VMware Inc.
+PREFIX=/usr/lib/vmware # depends on the vmware location
+
+# HACK: Let the OpenGL driver report s3tc capability even if not present, so 3D will be enabled
+export force_s3tc_enable=true
+
+# Turn off "helpful" DE features
+export APPMENU_DISPLAY_BOTH=1
+export UBUNTU_MENUPROXY=0
+export GNOME_DISABLE_CRASH_DIALOG=1
+
+PROG=$(basename $0)
+
+exec "$PREFIX/bin/$PROG" "$@"
+