diff options
Diffstat (limited to 'niri-ipc')
| -rw-r--r-- | niri-ipc/src/lib.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/niri-ipc/src/lib.rs b/niri-ipc/src/lib.rs index b57860d8..9d52546a 100644 --- a/niri-ipc/src/lib.rs +++ b/niri-ipc/src/lib.rs @@ -116,6 +116,14 @@ pub enum Action { FocusWindowDown, /// Focus the window above. FocusWindowUp, + /// Focus the window below or the column to the left. + FocusWindowDownOrColumnLeft, + /// Focus the window below or the column to the right. + FocusWindowDownOrColumnRight, + /// Focus the window above or the column to the left. + FocusWindowUpOrColumnLeft, + /// Focus the window above or the column to the right. + FocusWindowUpOrColumnRight, /// Focus the window or the workspace above. FocusWindowOrWorkspaceDown, /// Focus the window or the workspace above. |
