mirror of
https://github.com/Cheviiot/Nivora.git
synced 2026-08-03 15:51:12 +00:00
Maintain a validated cross-distribution package catalog. Automate upstream updates, isolated builds, diagnostics, and direct publication. Build the official GitHub Desktop sources for Linux with working OAuth.
10 lines
348 B
Bash
Executable File
10 lines
348 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Happ's bundled Qt falls back to the generic GNOME platform theme, which
|
|
# reports Qt::ColorScheme::Unknown. The bundled portal plugin follows the
|
|
# desktop color-scheme setting and emits updates when it changes.
|
|
QT_QPA_PLATFORMTHEME="${QT_QPA_PLATFORMTHEME:-xdgdesktopportal}"
|
|
export QT_QPA_PLATFORMTHEME
|
|
|
|
exec /opt/happ/bin/Happ "$@"
|