Following the Quickshell documentation to get started https://quickshell.outfoxxed.me/docs
25 lines
641 B
QML
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
|
|
}
|
|
}
|
|
}
|
|
}
|