From 9aed2f23b471fe1fa7b44aed1842ac7ccf0ffdc7 Mon Sep 17 00:00:00 2001 From: rekols Date: Sat, 5 Jun 2021 16:11:42 +0800 Subject: [PATCH] SettingsDaemon: Set Gtk3 icon theme --- settings-daemon/theme/thememanager.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings-daemon/theme/thememanager.cpp b/settings-daemon/theme/thememanager.cpp index e2fcd17..a3b6b6d 100644 --- a/settings-daemon/theme/thememanager.cpp +++ b/settings-daemon/theme/thememanager.cpp @@ -212,6 +212,8 @@ void ThemeManager::initGtkConfig() settings.setValue("gtk-font-name", QString("%1 %2").arg(systemFont()).arg(systemFontPointSize())); // dark mode settings.setValue("gtk-application-prefer-dark-theme", isDarkMode()); + // icon theme + settings.setValue("gtk-icon-theme-name", "Crule"); // other settings.setValue("gtk-enable-animations", true); settings.sync();