37 lines
609 B
QML
37 lines
609 B
QML
// 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
|
|
}
|
|
}
|
|
}
|
|
}
|