Merge pull request #1731 from q234rty/master

Use `XDG_ACTIVATION_TOKEN` from environment variables by default
This commit is contained in:
DeepBlueV7.X 2024-05-16 11:32:02 +00:00 committed by GitHub
commit f1f7f8e730
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -259,7 +259,10 @@ main(int argc, char *argv[])
// getting a valid activation token on wayland is a bit of a pain, it works most reliably // getting a valid activation token on wayland is a bit of a pain, it works most reliably
// when you have an actual window, that has the focus... // when you have an actual window, that has the focus...
auto waylandApp = app.nativeInterface<QNativeInterface::QWaylandApplication>(); auto waylandApp = app.nativeInterface<QNativeInterface::QWaylandApplication>();
if (waylandApp) { // When the token is set in the env, use it by default as that's what we're supposed to do
// But leave a env knob so users can workaround terminal emulators that leak tokens
if (waylandApp &&
(!qEnvironmentVariableIsEmpty("NHEKO_FORCE_ACTIVATION_SPLASH") || token.isEmpty())) {
QQuickView window; QQuickView window;
window.setTitle("Activate main instance"); window.setTitle("Activate main instance");
window.setMaximumSize(QSize(100, 50)); window.setMaximumSize(QSize(100, 50));