Files
arthur-os/default/quickshell/omarchy-shell/Commons/ShellState.qml
T
David Heinemeier Hansson db5c09fc2e Get rid of the quick settings
It ended up just duplicating the omarchy menu
2026-05-16 21:15:04 +02:00

13 lines
385 B
QML

pragma Singleton
import QtQuick
// Noctalia compat shim. Their plugins occasionally introspect global UI
// state through this singleton. Returning safe defaults lets reads succeed
// without us tracking the state ourselves.
QtObject {
readonly property bool isLoaded: true
property var activeScreen: null
property bool launcherOpen: false
property bool settingsOpen: false
}