feat: basic quickshell setup

This commit is contained in:
2026-06-14 14:30:09 +02:00
parent d2e569114f
commit 940ee3e988
23 changed files with 477 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
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 {}
}
}
}
}