Files
monoshell/Panes/Status.qml
2026-02-26 16:18:06 -08:00

37 lines
728 B
QML

import Quickshell
import QtQuick
import "../Widgets" as Widgets
Item {
width: 900
height: 42
anchors {
top: parent.top
horizontalCenter: parent.horizontalCenter
}
Row {
anchors {
top: parent.top
left: parent.left
bottom: parent.bottom
}
Widgets.Battery {}
}
Widgets.Workspaces {
height: parent.height
anchors {
top: parent.top
bottom: parent.bottom
horizontalCenter: parent.horizontalCenter
}
}
Row {
anchors {
top: parent.top
right: parent.right
bottom: parent.bottom
}
Widgets.Time {}
}
}