pragma Singleton import QtQuick QtObject { property bool launcherOpen: false // Focused-window tracking is a later compositor milestone. Launching an // application does not mean it has focus, so this stays "Desktop" for now. property string activeApplication: "Desktop" function openLauncher() { launcherOpen = true } function closeLauncher() { launcherOpen = false } function toggleLauncher() { launcherOpen = !launcherOpen } }