added new events introduced in Hyprland versions from v0.36.0 to v0.37.1

This commit is contained in:
Milarin 2024-03-19 19:20:24 +01:00
parent faf807cb86
commit ce9bb69859

View File

@ -31,8 +31,10 @@ const (
EventTypeActiveWindowV2 EventType = "activewindowv2" EventTypeActiveWindowV2 EventType = "activewindowv2"
EventTypeKeyboardFocus EventType = "keyboardfocus" EventTypeKeyboardFocus EventType = "keyboardfocus"
EventTypeMoveWorkspace EventType = "moveworkspace" EventTypeMoveWorkspace EventType = "moveworkspace"
EventTypeMoveWorkspaceV2 EventType = "moveworkspacev2"
EventTypeFocusedMon EventType = "focusedmon" EventTypeFocusedMon EventType = "focusedmon"
EventTypeMoveWindow EventType = "movewindow" EventTypeMoveWindow EventType = "movewindow"
EventTypeMoveWindowV2 EventType = "movewindowv2"
EventTypeOpenLayer EventType = "openlayer" EventTypeOpenLayer EventType = "openlayer"
EventTypeCloseLayer EventType = "closelayer" EventTypeCloseLayer EventType = "closelayer"
EventTypeOpenWindow EventType = "openwindow" EventTypeOpenWindow EventType = "openwindow"
@ -40,12 +42,16 @@ const (
EventTypeUrgent EventType = "urgent" EventTypeUrgent EventType = "urgent"
EventTypeMinimize EventType = "minimize" EventTypeMinimize EventType = "minimize"
EventTypeMonitorAdded EventType = "monitoradded" EventTypeMonitorAdded EventType = "monitoradded"
EventTypeMonitorAddedV2 EventType = "monitoraddedv2"
EventTypeMonitorRemoved EventType = "monitorremoved" EventTypeMonitorRemoved EventType = "monitorremoved"
EventTypeCreateWorkspace EventType = "createworkspace" EventTypeCreateWorkspace EventType = "createworkspace"
EventTypeCreateWorkspaceV2 EventType = "createworkspacev2"
EventTypeDestroyWorkspace EventType = "destroyworkspace" EventTypeDestroyWorkspace EventType = "destroyworkspace"
EventTypeDestroyWorkspaceV2 EventType = "destroyworkspacev2"
EventTypeFullscreen EventType = "fullscreen" EventTypeFullscreen EventType = "fullscreen"
EventTypeChangeFloatingMode EventType = "changefloatingmode" EventTypeChangeFloatingMode EventType = "changefloatingmode"
EventTypeWorkspace EventType = "workspace" EventTypeWorkspace EventType = "workspace"
EventTypeWorkspaceV2 EventType = "workspacev2"
EventTypeSubmap EventType = "submap" EventTypeSubmap EventType = "submap"
EventTypeMouseMove EventType = "mousemove" EventTypeMouseMove EventType = "mousemove"
EventTypeMouseButton EventType = "mousebutton" EventTypeMouseButton EventType = "mousebutton"