From 695e51beefd81b805602c22c093c540df68155f0 Mon Sep 17 00:00:00 2001 From: rope Date: Fri, 21 Aug 2026 16:35:05 +0100 Subject: [PATCH] quickshell: force Papirus-Fred icon theme, qt5ct bypasses gsettings Co-Authored-By: Claude Fable 5 --- settings/quickshell.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/settings/quickshell.nix b/settings/quickshell.nix index 1a58b3d..ed9fb7c 100644 --- a/settings/quickshell.nix +++ b/settings/quickshell.nix @@ -46,6 +46,11 @@ in ExecStart = "${pkgs.quickshell}/bin/qs"; Restart = "always"; RestartSec = 2; + # Stylix sets QT_QPA_PLATFORMTHEME=qt5ct system-wide, so Qt asks + # qt6ct for the icon theme and never sees the gsettings value. + # Quickshell honours this override; without it the Papirus-Fred → + # YAMIS Inherits chain is bypassed entirely. + Environment = [ "QS_ICON_THEME=Papirus-Fred" ]; }; Install.WantedBy = [ "hyprland-session.target" ]; };