From 20d34eb622a9dd739beb0723ede61debae6c2dfa Mon Sep 17 00:00:00 2001 From: Yosuke Nishiyama <141266522+Yunexiz@users.noreply.github.com> Date: Wed, 22 Oct 2025 23:28:04 +0100 Subject: [PATCH] change name to "filterPassive" --- dots/.config/quickshell/ii/modules/bar/SysTray.qml | 2 +- dots/.config/quickshell/ii/modules/common/Config.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/bar/SysTray.qml b/dots/.config/quickshell/ii/modules/bar/SysTray.qml index ef6833e38..5489eb2f3 100644 --- a/dots/.config/quickshell/ii/modules/bar/SysTray.qml +++ b/dots/.config/quickshell/ii/modules/bar/SysTray.qml @@ -17,7 +17,7 @@ Item { property bool showOverflowMenu: true property var activeMenu: null - property bool smartTray: Config.options.bar.tray.smartTray + property bool smartTray: Config.options.bar.tray.filterPassive property list itemsInUserList: SystemTray.items.values.filter(i => (Config.options.bar.tray.pinnedItems.includes(i.id) && (!smartTray || i.status !== Status.Passive))) property list itemsNotInUserList: SystemTray.items.values.filter(i => (!Config.options.bar.tray.pinnedItems.includes(i.id) && (!smartTray || i.status !== Status.Passive))) diff --git a/dots/.config/quickshell/ii/modules/common/Config.qml b/dots/.config/quickshell/ii/modules/common/Config.qml index e10e7ac38..bece5f94e 100644 --- a/dots/.config/quickshell/ii/modules/common/Config.qml +++ b/dots/.config/quickshell/ii/modules/common/Config.qml @@ -221,7 +221,7 @@ Singleton { property bool showItemId: false property bool invertPinnedItems: true // Makes the below a whitelist for the tray and blacklist for the pinned area property list pinnedItems: [ ] - property bool smartTray: true // Filter passive tray icons or not + property bool filterPassive: true } property JsonObject workspaces: JsonObject { property bool monochromeIcons: true