More pets

This commit is contained in:
2025-11-04 08:02:03 +01:00
parent 9dd1a5430d
commit 4acc1556b2
9 changed files with 85 additions and 554 deletions
+43
View File
@@ -0,0 +1,43 @@
import QtQuick
import Quickshell.Io
import Quickshell.Wayland
Rectangle {
id: root
width: imageEvernight.width
height: imageEvernight.height
required property var path
AnimatedImage {
id: imageEvernight
source: root.path
fillMode: Image.PreserveAspectFit
}
IpcHandler {
target: "command"
// Keybind swap layer
function toggleLayer(): void {
if ( !mainWindow.onTop ) {
mainWindow.WlrLayershell.layer = WlrLayer.Top
mainWindow.onTop = true
} else {
mainWindow.WlrLayershell.layer = WlrLayer.Bottom
mainWindow.onTop = false
}
}
// Keybind swap overlay
function toggleOverlay(): void {
if (!mainWindow.onTop) {
mainWindow.WlrLayershell.layer = WlrLayer.Overlay
mainWindow.onTop = true
} else {
mainWindow.WlrLayershell.layer = WlrLayer.Bottom
mainWindow.onTop = false
}
}
}
}