This commit is contained in:
2025-10-23 00:47:29 +02:00
parent bdccb9e0aa
commit 03adbbd38f
4 changed files with 58 additions and 26 deletions
+24 -6
View File
@@ -3,7 +3,7 @@ import QtQuick
import Quickshell
import Quickshell.Wayland
import qs.Modules
import qs.Functions
// import qs.Functions
PanelWindow {
id: mainWindow
@@ -17,18 +17,36 @@ PanelWindow {
margins {
left: 0
right: 0
top: 0
bottom: 9
}
mask: Region {}
mask: Region {
intersection: intersection.Intersect
}
surfaceFormat.opaque: false
implicitWidth: 320
implicitHeight: 293
implicitWidth: Screen.width
implicitHeight: Screen.height
PetMarch {
id: petMarch
id: petMarch2
color: mainWindow.color
anchors.fill: parent
anchors.right: parent.right
anchors.bottom: parent.bottom
}
// Mve this pet
PetMarch {
id: original
color: mainWindow.color
x: 0
y: 1147
// anchors.leftMargin: parent.leftMargin
// anchors.bottomMargin: parent.bottomMargin
}
Mouse {
}
}