nysh/src/Bar.qml

27 lines
708 B
QML

import Quickshell // for ShellRoot and PanelWindow
import QtQuick // for Text
import Quickshell.Io // for process
Scope {
Variants {
model: Quickshell.screens
// the screen from the screens list will be injected into this property
PanelWindow {
property var modelData
screen: modelData
anchors {
top: true
left: true
bottom: true
}
width: 20
// the ClockWidget type we just created
// TODO: on click open a calendar view
ClockWidget {
anchors.horizontalCenter: parent.horizontalCenter
}
}
}
}