diff options
Diffstat (limited to 'services/Hyprland.qml')
| -rw-r--r-- | services/Hyprland.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/Hyprland.qml b/services/Hyprland.qml index b8fa7c5..7626f53 100644 --- a/services/Hyprland.qml +++ b/services/Hyprland.qml @@ -99,6 +99,7 @@ Singleton { readonly property int width: lastIpcObject.size[0] readonly property int height: lastIpcObject.size[1] readonly property HyprlandWorkspace workspace: Hyprland.workspaces.values.find(w => w.id === lastIpcObject.workspace.id) ?? null + readonly property HyprlandMonitor monitor: Hyprland.monitors.values.find(m => m.id === lastIpcObject.monitor) ?? null readonly property bool floating: lastIpcObject.floating readonly property bool fullscreen: lastIpcObject.fullscreen readonly property int pid: lastIpcObject.pid |