nuke minimize

This commit is contained in:
Vaxry 2024-09-23 16:29:37 +01:00
parent 461e84a687
commit c6b2308463
2 changed files with 0 additions and 2 deletions

View File

@ -59,7 +59,6 @@ e.g.: `workspace>>2`
| submap | emitted when a keybind submap changes. Empty means default. |`SUBMAPNAME` | | submap | emitted when a keybind submap changes. Empty means default. |`SUBMAPNAME` |
| changefloatingmode | emitted when a window changes its floating mode. `FLOATING` is either 0 or 1. | `WINDOWADDRESS`,`FLOATING` | | changefloatingmode | emitted when a window changes its floating mode. `FLOATING` is either 0 or 1. | `WINDOWADDRESS`,`FLOATING` |
| urgent | emitted when a window requests an `urgent` state | `WINDOWADDRESS` | | urgent | emitted when a window requests an `urgent` state | `WINDOWADDRESS` |
| minimize | emitted when a window requests a change to its minimized state. `MINIMIZED` is either 0 or 1. | `WINDOWADDRESS,MINIMIZED` |
| screencast | emitted when a screencopy state of a client changes. Keep in mind there might be multiple separate clients. State is 0/1, owner is 0 - monitor share, 1 - window share | `STATE,OWNER` | | screencast | emitted when a screencopy state of a client changes. Keep in mind there might be multiple separate clients. State is 0/1, owner is 0 - monitor share, 1 - window share | `STATE,OWNER` |
| windowtitle | emitted when a window title changes. | `WINDOWADDRESS` | | windowtitle | emitted when a window title changes. | `WINDOWADDRESS` |
| windowtitlev2 | emitted when a window title changes. | `WINDOWADDRESS,WINDOWTITLE` | | windowtitlev2 | emitted when a window title changes. | `WINDOWADDRESS,WINDOWTITLE` |

View File

@ -27,7 +27,6 @@ These are all the events that can be listened to using Event Hooks.
| closeWindow | fired when a window is unmapped | `PHLWINDOW` | ✕ | | closeWindow | fired when a window is unmapped | `PHLWINDOW` | ✕ |
| windowUpdateRules | fired when a window's rules are updated | `PHLWINDOW` | ✕ | | windowUpdateRules | fired when a window's rules are updated | `PHLWINDOW` | ✕ |
| urgent | fired when a window requests urgent | `PHLWINDOW` | ✕ | | urgent | fired when a window requests urgent | `PHLWINDOW` | ✕ |
| minimize | fired when a window requests a minimize status change. Second param is 1 or 0 | `std::vector<std::any>{PHLWINDOW, int64_t}` | ✕ |
| monitorAdded | fired when a monitor is plugged in | `CMonitor*` | ✕ | | monitorAdded | fired when a monitor is plugged in | `CMonitor*` | ✕ |
| monitorRemoved | fired when a monitor is unplugged | `CMonitor*` | ✕ | | monitorRemoved | fired when a monitor is unplugged | `CMonitor*` | ✕ |
| createWorkspace | fired when a workspace is created | `PHLWORKSPACE` | ✕ | | createWorkspace | fired when a workspace is created | `PHLWORKSPACE` | ✕ |