blob: ddd0c7e6d34f5deccc4e6b49c906bf9a2ed132b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/bash
# This is your Application ID, avoid conflict
appID="com.discordapp.Discord"
# This is a friendly name of an application. It should only contain ASCII characters and not spaces.
friendlyName="Discord"
# This is the state directory of your application, which is located under "XDG_DATA_HOME"
stateDirectory="Discord_Data"
# This is the target executable to launch
launchTarget="/opt/discord/Discord --disable-setuid-sandbox --gtk-version=3 --ozone-platform-hint=auto --enable-zero-copy --enable-features=VaapiVideoDecodeLinuxGL,VaapiVideoDecoder,WebRTCPipeWireCapturer --wayland-text-input-version=3 --enable-wayland-ime --no-suid-sandbox"
# Takes boolean value. When enabled, do not process XAuth files and enable X access. Generally this should be always false.
waylandOnly="false"
bindPipewire="true"
# Below you can set envs that will be imported into the application sandbox
|