summarylogtreecommitdiffstats
path: root/wemeet.sh
diff options
context:
space:
mode:
authorSukanka2021-11-12 18:25:30 +0800
committerSukanka2021-11-12 18:25:30 +0800
commit7827453d92d9b6c5a36253f85b2d513f57ff350c (patch)
tree4b5889c94d52042f1dbae5877d3f380bda23a0a5 /wemeet.sh
parent5bc8d996930be2d7a67c72dd2e06cd623c576ff1 (diff)
downloadaur-7827453d92d9b6c5a36253f85b2d513f57ff350c.tar.gz
Fix: xcast.conf not found
Diffstat (limited to 'wemeet.sh')
-rw-r--r--wemeet.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/wemeet.sh b/wemeet.sh
new file mode 100644
index 000000000000..3973a190ff8e
--- /dev/null
+++ b/wemeet.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+export PATH=$PATH:/opt/wemeet/bin
+export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/wemeet
+export QT_PLUGIN_PATH="/usr/lib/qt/plugins"
+export XDG_SESSION_TYPE=x11
+export QT_QPA_PLATFORM=xcb
+unset WAYLAND_DISPLAY
+if [ -f "/usr/bin/bwrap" ];then
+ bwrap --dev-bind / / --tmpfs $HOME/.config wemeetapp $*;
+else
+ exec wemeetapp $*;
+fi;