2024-08-01 01:18:12 +02:00
|
|
|
import Quickshell // for ShellRoot and PanelWindow
|
|
|
|
import Quickshell.Io // For Processes
|
|
|
|
import QtQuick // For Text
|
|
|
|
|
|
|
|
Scope {
|
|
|
|
|
2024-08-01 02:23:54 +02:00
|
|
|
Variants {
|
|
|
|
model: Quickshell.screens
|
2024-08-01 01:18:12 +02:00
|
|
|
|
2024-08-01 02:23:54 +02:00
|
|
|
PanelWindow {
|
|
|
|
property var modelData
|
|
|
|
screen: modelData
|
2024-08-01 01:18:12 +02:00
|
|
|
|
2024-08-01 02:23:54 +02:00
|
|
|
anchors {
|
2024-08-09 11:54:07 +02:00
|
|
|
bottom: true
|
2024-08-01 02:23:54 +02:00
|
|
|
left: true
|
|
|
|
right: true
|
|
|
|
}
|
2024-08-01 01:18:12 +02:00
|
|
|
|
2024-08-01 02:23:54 +02:00
|
|
|
height: 30
|
2024-08-01 01:18:12 +02:00
|
|
|
|
2024-08-09 11:54:07 +02:00
|
|
|
ClockWidget {
|
2024-08-01 02:23:54 +02:00
|
|
|
anchors.centerIn: parent
|
|
|
|
}
|
|
|
|
}
|
2024-08-01 01:18:12 +02:00
|
|
|
}
|
|
|
|
}
|