45 lines
839 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
color: "black"
2025-12-21 20:59:33 +01:00
anchors {
top: true
left: true
right: true
}
RowLayout {
id: leftLayout
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter
Clock {
Layout.leftMargin: 30
2025-12-21 21:24:03 +01:00
}
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 {}
SystemTray {
Layout.rightMargin: 30
2025-12-21 20:59:33 +01:00
}
}
}