forked from Lainports/freebsd-ports
Official client for the Discord platform (Linux version). Discord is great for playing games and chilling with friends, or even building a worldwide community. Customize your own space to talk, play, and hang out. https://discord.com/
11 lines
358 B
Bash
Executable file
11 lines
358 B
Bash
Executable file
#!%%LINUXBASE%%/bin/bash
|
|
|
|
# workaround Chromium bug https://bugs.chromium.org/p/chromium/issues/detail?id=918234
|
|
if [ "$DBUS_SESSION_BUS_ADDRESS" = "" ]; then
|
|
export DBUS_SESSION_BUS_ADDRESS="autolaunch:"
|
|
fi
|
|
export ELECTRON_IS_DEV=0
|
|
export LIBGL_DRI3_DISABLE=1
|
|
export NODE_ENV=production
|
|
|
|
exec -a "$0" "%%DATADIR%%/Discord" --no-sandbox --no-zygote "$@"
|