1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-30 17:42:06 -04:00

feat(system-tray): add optional monochrome icons setting (#2241)

Adds a 'Monochrome Icons' toggle to the system tray widget context menu.
When enabled, all system tray icons are desaturated using MultiEffect,
giving a cleaner monochrome bar aesthetic that matches minimal themes.

The setting is per-user (settings.json), defaults to false to preserve
existing behavior.
This commit is contained in:
Roni Laukkarinen
2026-04-20 16:15:02 +03:00
committed by GitHub
parent 4c2c193766
commit f1e3452307
4 changed files with 27 additions and 0 deletions

View File

@@ -714,6 +714,15 @@ Item {
})
}
SettingsToggleCard {
iconName: "filter_b_and_w"
title: I18n.tr("Monochrome System Tray Icons")
description: I18n.tr("Desaturate all system tray icons for a uniform monochrome look")
visible: selectedBarConfig?.enabled
checked: SettingsData.systemTrayMonochromeIcons
onToggled: checked => SettingsData.set("systemTrayMonochromeIcons", checked)
}
SettingsToggleCard {
iconName: "mouse"
title: I18n.tr("Scroll Wheel")