This commit is contained in:
Miguel Palhas
2025-06-15 09:26:50 +01:00
parent e14bb4de17
commit bc8a219f16
9 changed files with 60 additions and 4 deletions
@@ -0,0 +1,17 @@
import Quickshell
import QtQuick
PanelWindow {
anchors {
top: true
left: true
right: true
}
implicitHeight: 30
Text {
anchors.centerIn: parent
text: "hello world"
}
}