From c41f93a468c4d04e16f8c89736cc48cd4ab4c623 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Wed, 5 Feb 2025 17:18:21 +0300 Subject: Add focus-window-top/bottom/down-or-top/up-or-bottom actions --- niri-ipc/src/lib.rs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'niri-ipc') diff --git a/niri-ipc/src/lib.rs b/niri-ipc/src/lib.rs index 5d611c5a..791b09a4 100644 --- a/niri-ipc/src/lib.rs +++ b/niri-ipc/src/lib.rs @@ -253,6 +253,14 @@ pub enum Action { FocusWindowOrWorkspaceDown {}, /// Focus the window or the workspace above. FocusWindowOrWorkspaceUp {}, + /// Focus the topmost window. + FocusWindowTop {}, + /// Focus the bottommost window. + FocusWindowBottom {}, + /// Focus the window below or the topmost window. + FocusWindowDownOrTop {}, + /// Focus the window above or the bottommost window. + FocusWindowUpOrBottom {}, /// Move the focused column to the left. MoveColumnLeft {}, /// Move the focused column to the right. -- cgit