blob: 123b4cef9f327e3409494ab7e6e53a9fe7d810d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/bash
if [ ${XDG_SESSION_TYPE} = wayland ]; then
export launchTarget="/opt/discord/Discord --disable-setuid-sandbox --no-sandbox $@ --ozone-platform-hint=auto" --wayland-text-input-version=3
else
export launchTarget="/opt/discord/Discord --disable-setuid-sandbox --no-sandbox $@"
fi
export _portalConfig=/usr/lib/portable/info/com.discord.app/config
if [[ "$@" = "--actions opendir" ]]; then
portable --actions opendir
elif [[ "$@" = "--actions share-files" ]]; then
portable --actions share-files
elif [[ "$@" = "--actions quit" ]]; then
portable --actions quit
else
portable "$@"
fi
|