Files
DeltaruneQuickshell/shell.qml
2026-03-01 10:37:07 +02:00

35 lines
622 B
QML

import Quickshell
import Quickshell.Io
import Quickshell.Hyprland
import QtQuick
import "Shell"
import "Shell/Overlays"
import "Shell/Notifications"
ShellRoot {
id: baseShell
property bool isOpen: ShellStateManager.shellOpen
Overlay {}
NotificationLayer {}
Topbar {}
Healthbar {}
DialogBox {}
MprisOverlay {}
InputShortcuts {}
IpcHandler {
target: "deltarune.shell"
enabled: true
function open(): void {
ShellStateManager.openShell();
}
function close(): void {
ShellStateManager.closeShell();
}
}
}