mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-13 09:52:56 +01:00
mzteinit: stop GTK from using nonsensical at-spi daemon
This commit is contained in:
parent
1cce621711
commit
5c6a74a6a8
1 changed files with 4 additions and 0 deletions
|
@ -88,6 +88,10 @@ pub fn populateEnvironment(env: *std.process.EnvMap) !bool {
|
|||
try env.put("QT_QPA_PLATFORMTHEME", "qt5ct");
|
||||
try env.put("GTK_THEME", @import("opts").gtk_theme); // gtk theme from confgen
|
||||
|
||||
// this stops GTK from dbus-launching the mid-bogglingly pointless at-spi daemon
|
||||
try env.put("NO_AT_BRIDGE", "1");
|
||||
try env.put("GTK_A11Y", "none");
|
||||
|
||||
// use xdg-desktop-portal
|
||||
try env.put("GTK_USE_PORTAL", "1");
|
||||
|
||||
|
|
Loading…
Reference in a new issue