From dd5d8a348db21f66dbc9e829b51ea3bb7d6bc7c4 Mon Sep 17 00:00:00 2001 From: "s0wlz (Matthias Puchstein)" Date: Mon, 1 Jun 2026 14:26:20 +0200 Subject: [PATCH] quickshell: move the notification pill between k8s and system Reorder the bottom bar group so notifications sit between the Kubernetes and System pills. --- dot_config/quickshell/Bar.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dot_config/quickshell/Bar.qml b/dot_config/quickshell/Bar.qml index 3b1f92c..c7b7514 100644 --- a/dot_config/quickshell/Bar.qml +++ b/dot_config/quickshell/Bar.qml @@ -97,6 +97,8 @@ Scope { BarComponents.MediaPill { id: mediaBtn } + BarComponents.KubernetesPill { id: kubernetesBtn; visible: Shared.Config.kubeEnabled } + BarComponents.BarPill { id: notifBtn groupName: "notifications" @@ -124,8 +126,6 @@ Scope { ] } - BarComponents.KubernetesPill { id: kubernetesBtn; visible: Shared.Config.kubeEnabled } - BarComponents.SystemPill { id: systemBtn } } }