From 71bd402dfed4a62a6053053b24358dfc6af9260e Mon Sep 17 00:00:00 2001
From: matt1432 <matt@nelim.org>
Date: Sat, 26 Apr 2025 19:01:40 -0400
Subject: [PATCH] feat(quickshell): add basic shell.qml file

---
 modules/quickshell/config/shell.qml | 32 +++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 modules/quickshell/config/shell.qml

diff --git a/modules/quickshell/config/shell.qml b/modules/quickshell/config/shell.qml
new file mode 100644
index 00000000..270c920f
--- /dev/null
+++ b/modules/quickshell/config/shell.qml
@@ -0,0 +1,32 @@
+import Quickshell
+import QtQuick
+
+import "./Widgets/ScreenCorners"
+import "./Config/Theme"
+
+ShellRoot {
+    Theme {
+        id: theme
+
+    }
+
+    ScreenCorners {
+    }
+
+    PanelWindow {
+        color: theme.windowBg
+        height: 30
+
+        anchors {
+            bottom: true
+            left: true
+            right: true
+        }
+
+        Text {
+            anchors.centerIn: parent
+            color: theme.windowFg
+            text: "hello world"
+        }
+    }
+}