empty bar

This commit is contained in:
end-4
2025-04-10 00:16:42 +02:00
parent 2c53fc767a
commit 2e466abf71
5 changed files with 191 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
import "../common"
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import Quickshell
Scope {
Variants {
model: Quickshell.screens
PanelWindow {
property var modelData
screen: modelData
height: 40
color: Appearance.colors.colLayer0
// Left section
RowLayout {
anchors.left: parent.left
}
// Middle section
RowLayout {
anchors.top: parent.top
anchors.bottom: parent.top
anchors.centerIn: parent
// Rectangle {
// }
// ClockWidget {
// Layout.fillHeight: true
// }
}
// Right section
RowLayout {
anchors.right: parent.right
}
anchors {
top: true
left: true
right: true
}
}
}
}
@@ -0,0 +1,6 @@
import QtQuick
import "../common"
Text {
text: DateTime.time
}