Discord update
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#!/usr/bin/env bash
|
||||
# coding: UTF-8
|
||||
|
||||
|
||||
declare -a discord_parameters
|
||||
|
||||
# Variables set during ebuild configuration
|
||||
EBUILD_SECCOMP=false
|
||||
EBUILD_WAYLAND=false
|
||||
|
||||
"${EBUILD_SECCOMP}" || discord_parameters+=( --disable-seccomp-filter-sandbox )
|
||||
|
||||
"${EBUILD_WAYLAND}" && \
|
||||
[[ -n "${WAYLAND_DISPLAY}" ]] && discord_parameters+=(
|
||||
--enable-features=UseOzonePlatform
|
||||
--ozone-platform=wayland
|
||||
--enable-wayland-ime
|
||||
)
|
||||
|
||||
|
||||
# https://bugs.gentoo.org/905289
|
||||
@@DESTDIR@@/disable-breaking-updates.py
|
||||
|
||||
@@DESTDIR@@/Discord "${discord_parameters[@]}" "$@"
|
||||
Reference in New Issue
Block a user