Files
monoshell/Panes/Status.qml

40 lines
810 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.Volume {}
Widgets.Brightness {}
}
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.Uptime {}
Widgets.Time {}
}
}