From c0f7504b369f4bafa7a2c277b9b718e555956232 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Tue, 22 Jul 2025 09:17:03 +0700 Subject: [PATCH] bar: tray: not make icons fully monochrome --- .config/quickshell/ii/modules/bar/SysTrayItem.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/ii/modules/bar/SysTrayItem.qml b/.config/quickshell/ii/modules/bar/SysTrayItem.qml index a3d70cecd..9696c49c4 100644 --- a/.config/quickshell/ii/modules/bar/SysTrayItem.qml +++ b/.config/quickshell/ii/modules/bar/SysTrayItem.qml @@ -59,12 +59,12 @@ MouseArea { visible: false // There's already color overlay anchors.fill: parent source: trayIcon - desaturation: 1 // 1.0 means fully grayscale + desaturation: 0.8 // 1.0 means fully grayscale } ColorOverlay { anchors.fill: desaturatedIcon source: desaturatedIcon - color: ColorUtils.transparentize(Appearance.colors.colOnLayer0, 0.6) + color: ColorUtils.transparentize(Appearance.colors.colOnLayer0, 0.9) } } }