From 1ef93b19516dbcdc1dec1f9746d1224f0ccab922 Mon Sep 17 00:00:00 2001 From: Eriq Taing Date: Mon, 27 Jul 2026 14:47:41 -0400 Subject: [PATCH] [AI] Changed the bar to render only on specified monitors if listed --- bar/Bar.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bar/Bar.qml b/bar/Bar.qml index 2844d4b..2797795 100644 --- a/bar/Bar.qml +++ b/bar/Bar.qml @@ -7,7 +7,7 @@ import qs.common.widgets Scope { Variants { - model: Quickshell.screens + model: Config.options.bar.screenList.length > 0 ? Quickshell.screens.filter(s => Config.options.bar.screenList.includes(s.name)) : Quickshell.screens PanelWindow { required property var modelData screen: modelData