Files
Nebula-OS/shells/desktop/shell/qml/Main.qml
T
2026-08-26 16:50:43 +12:00

17 lines
464 B
QML

import QtQuick
QtObject {
id: shell
readonly property DesktopSurface desktop: DesktopSurface {}
readonly property TopBarSurface topBar: TopBarSurface {}
readonly property LauncherSurface launcher: LauncherSurface {}
readonly property Shortcut closeLauncherShortcut: Shortcut {
sequence: "Escape"
enabled: ShellState.launcherOpen
context: Qt.ApplicationShortcut
onActivated: ShellState.closeLauncher()
}
}