nichts/modules/style/quickshell/bar/Bar.qml

28 lines
508 B
QML
Raw Normal View History

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-09 12:57:56 +02:00
height: 25
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
}
}