Skip to content

Commit bcf41ed

Browse files
arora-architPurian23
authored andcommitted
feat(system-tray): add icon tinting (#2266)
1 parent 5033bdc commit bcf41ed

5 files changed

Lines changed: 501 additions & 12 deletions

File tree

quickshell/Common/SettingsData.qml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,9 @@ Singleton {
194194
property int selectedGpuIndex: 0
195195
property var enabledGpuPciIds: []
196196
property bool showSystemTray: true
197-
property bool systemTrayMonochromeIcons: false
197+
property string systemTrayIconTintMode: "none"
198+
property int systemTrayIconTintSaturation: 50
199+
property int systemTrayIconTintStrength: 135
198200
property bool showClock: true
199201
property bool showNotificationButton: true
200202
property bool showBattery: true

quickshell/Common/settings/SettingsSpec.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ var SPEC = {
6969
selectedGpuIndex: { def: 0 },
7070
enabledGpuPciIds: { def: [] },
7171
showSystemTray: { def: true },
72-
systemTrayMonochromeIcons: { def: false },
72+
systemTrayIconTintMode: { def: "none" },
73+
systemTrayIconTintSaturation: { def: 50 },
74+
systemTrayIconTintStrength: { def: 135 },
7375
showClock: { def: true },
7476
showNotificationButton: { def: true },
7577
showBattery: { def: true },

0 commit comments

Comments
 (0)