From fb7dbaa187227e54470fb44495b732039ee5428e Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 9 Nov 2025 23:33:39 +0100 Subject: [PATCH] add missing dock loading extra condition --- dots/.config/quickshell/ii/shell.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/shell.qml b/dots/.config/quickshell/ii/shell.qml index b497b6b5c..ee2217bf7 100644 --- a/dots/.config/quickshell/ii/shell.qml +++ b/dots/.config/quickshell/ii/shell.qml @@ -50,7 +50,7 @@ ShellRoot { PanelLoader { identifier: "iiBar"; extraCondition: !Config.options.bar.vertical; component: Bar {} } PanelLoader { identifier: "iiBackground"; component: Background {} } PanelLoader { identifier: "iiCheatsheet"; component: Cheatsheet {} } - PanelLoader { identifier: "iiDock"; component: Dock {} } + PanelLoader { identifier: "iiDock"; extraCondition: Config.options.dock.enable; component: Dock {} } PanelLoader { identifier: "iiLock"; component: Lock {} } PanelLoader { identifier: "iiMediaControls"; component: MediaControls {} } PanelLoader { identifier: "iiNotificationPopup"; component: NotificationPopup {} }