37 lines
624 B
QML
37 lines
624 B
QML
pragma ComponentBehavior: Bound
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell
|
|
|
|
PanelWindow {
|
|
id: root
|
|
color: "transparent"
|
|
|
|
anchors {
|
|
top: true
|
|
bottom: true
|
|
right: true
|
|
}
|
|
width: 60
|
|
|
|
ColumnLayout {
|
|
// anchors.fill: parent
|
|
anchors.margins: 2
|
|
spacing: 2
|
|
anchors {
|
|
left: parent.left
|
|
right: parent.right
|
|
top: parent.top
|
|
margins: 2
|
|
}
|
|
|
|
ClockWidget {}
|
|
|
|
WorkspaceWidget {
|
|
bar: root
|
|
}
|
|
// SysTray {
|
|
// bar: root
|
|
// }
|
|
}
|
|
}
|