mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-03 20:28:21 +02:00
13 lines
385 B
QML
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
|
|
}
|