2026-01-13 12:12:16 +01:00

47 lines
886 B
QML

import Quickshell
import QtQuick
import QtQuick.Layouts
import "../../"
PanelWindow {
id: root
required property var modelData
implicitHeight: 36
color: Colors.background
anchors {
top: true
left: true
right: true
}
RowLayout {
id: leftLayout
spacing: 40
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter
Clock {
Layout.leftMargin: 30
}
Mpris {}
}
RowLayout {
id: centerLayout
anchors.centerIn: parent
Workspaces {}
}
RowLayout {
id: rightLayout
spacing: 40
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
Battery {}
Volume {}
PowerProfiles {}
SystemTray {
Layout.rightMargin: 30
}
}
}