From 2b0a2f58bdb5a3772afa3b0ac6a782acd1ca4f78 Mon Sep 17 00:00:00 2001 From: Niklas Kapelle Date: Fri, 28 Nov 2025 16:54:38 +0100 Subject: [PATCH] moved volume and audo pill --- bar/StatusBar.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bar/StatusBar.qml b/bar/StatusBar.qml index 6e8f56f..1ca5de0 100644 --- a/bar/StatusBar.qml +++ b/bar/StatusBar.qml @@ -36,8 +36,10 @@ PanelWindow { } Pill { + id: volume + anchors.verticalCenter: parent.verticalCenter - anchors.right: music.left + anchors.right: parent.right anchors.rightMargin: 10 Volume {} } @@ -45,7 +47,7 @@ PanelWindow { Pill { id: music - anchors.right: parent.right + anchors.right: volume.left anchors.rightMargin: 10 Music { player: Mpris.players.values.find(e => e.identity == "Spotify")