qs bluetooth

This commit is contained in:
outfoxxed 2025-07-24 18:51:24 -07:00
parent c6699a5b52
commit 6c73e52f6d
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
16 changed files with 277 additions and 3 deletions

View file

@ -1,11 +1,12 @@
pragma ComponentBehavior: Bound
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import Quickshell
import qs.bar.systray as SysTray
import qs.bar.audio as Audio
import qs.bar.mpris as Mpris
import qs.bar.connections as Connections
import qs.bar.power as Power
import qs.notifications as Notifs
@ -14,7 +15,6 @@ BarContainment {
property bool isSoleBar: Quickshell.screens.length == 1;
ColumnLayout {
anchors {
left: parent.left
right: parent.right
@ -75,6 +75,11 @@ BarContainment {
Layout.fillWidth: true
}
Connections.Connections {
bar: root
Layout.fillWidth: true
}
Power.Power {
bar: root
Layout.fillWidth: true
@ -84,6 +89,5 @@ BarContainment {
bar: root
Layout.fillWidth: true
}
}
}