43 lines
782 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
implicitHeight: 30
color: Colors.background
anchors {
top: true
left: true
right: true
}
RowLayout {
id: leftLayout
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter
2025-12-21 21:24:03 +01:00
Workspaces {
Layout.leftMargin: 10
}
2025-12-21 20:59:33 +01:00
}
RowLayout {
id: centerLayout
anchors.centerIn: parent
Clock {}
2025-12-21 20:59:33 +01:00
}
RowLayout {
id: rightLayout
spacing: 10
2025-12-21 20:59:33 +01:00
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
Volume {}
Battery {}
SystemTray {
Layout.rightMargin: 10
}
}
}