48 lines
911 B
QML
Raw Normal View History

2025-12-21 20:59:33 +01:00
import Quickshell
import QtQuick
import QtQuick.Layouts
2025-12-24 15:41:03 +01:00
import qs
2025-12-21 20:59:33 +01:00
PanelWindow {
id: root
required property var modelData
2025-12-21 20:59:33 +01:00
implicitHeight: 30
//color: Colors.background
2025-12-26 00:37:39 +01:00
color: Colors.background
2025-12-21 20:59:33 +01:00
anchors {
top: true
left: true
right: true
}
RowLayout {
id: leftLayout
2025-12-26 00:37:39 +01:00
spacing: 30
2025-12-21 20:59:33 +01:00
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter
Clock {
Layout.leftMargin: 30
2025-12-21 21:24:03 +01:00
}
2025-12-26 00:37:39 +01:00
Mpris {}
2025-12-21 20:59:33 +01:00
}
RowLayout {
id: centerLayout
anchors.centerIn: parent
Workspaces {}
2025-12-21 20:59:33 +01:00
}
RowLayout {
id: rightLayout
spacing: 20
2025-12-21 20:59:33 +01:00
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
Volume {}
Battery {}
2025-12-26 00:37:39 +01:00
PowerProfiles {}
2025-12-21 20:59:33 +01:00
SystemTray {
Layout.rightMargin: 30
2025-12-21 20:59:33 +01:00
}
}
}