36 lines
614 B
QML
36 lines
614 B
QML
import Quickshell
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import "./widgets/"
|
|
import "../config"
|
|
|
|
Scope {
|
|
Variants {
|
|
model: Quickshell.screens
|
|
|
|
PanelWindow {
|
|
id: barRoot
|
|
property var modelData
|
|
screen: modelData
|
|
|
|
anchors {
|
|
top: true
|
|
left: true
|
|
right: true
|
|
}
|
|
|
|
color: Appearance.colors.m3background
|
|
|
|
implicitHeight: 40
|
|
|
|
RowLayout {
|
|
anchors.fill: parent
|
|
|
|
spacing: 0
|
|
|
|
Clock {}
|
|
}
|
|
}
|
|
}
|
|
}
|