nysh/src/Bar.qml
2024-08-23 01:30:33 +02:00

25 lines
641 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
ClockWidget {
anchors.centerIn: parent
}
}
}
}