basic ass quickshell added

This commit is contained in:
2026-02-20 16:26:52 +00:00
parent c9d93f2e13
commit bd559c0507
6 changed files with 88 additions and 2 deletions
@@ -0,0 +1,36 @@
// Bar.qml
import Quickshell
import Quickshell.Io
import QtQuick
Scope {
id: root
PanelWindow {
required property var modelData
screen: modelData
color: "transparent"
anchors {
top: true
left: true
right: true
}
implicitHeight: 20
Rectangle {
width: meow.width
height: meow.height
radius: 3.5
color: "white"
anchors.centerIn: parent
Text {
id: meow
text: Clock.time
}
}
}
}