Files
I-DeskPet/shell.qml
T
2025-10-22 22:06:14 +02:00

35 lines
613 B
QML

pragma ComponentBehavior: Bound
import QtQuick
import Quickshell
import Quickshell.Wayland
import qs.Modules
import qs.Functions
PanelWindow {
id: mainWindow
color: "transparent"
property bool onTop: true
WlrLayershell.layer: WlrLayer.Top
anchors {
left: true
bottom: true
}
margins {
left: 0
bottom: 9
}
mask: Region {}
surfaceFormat.opaque: false
implicitWidth: 320
implicitHeight: 293
PetMarch {
id: petMarch
color: mainWindow.color
anchors.fill: parent
}
}