Files
cnix/modules/home/services/quickshell/components/bar/Tray.qml
2025-06-30 17:19:24 +02:00

15 lines
231 B
QML

import QtQuick
import QtQuick.Layouts
Rectangle {
Layout.fillHeight: true
color: "lightblue"
implicitWidth: trayText.width
Text {
id: trayText
text: "Tray"
anchors.centerIn: parent
}
}