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 --- src/layout/monitor.rs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/layout/monitor.rs') diff --git a/src/layout/monitor.rs b/src/layout/monitor.rs index 310121b5..37f5fb94 100644 --- a/src/layout/monitor.rs +++ b/src/layout/monitor.rs @@ -493,6 +493,22 @@ impl Monitor { } } + pub fn focus_window_top(&mut self) { + self.active_workspace().focus_window_top(); + } + + pub fn focus_window_bottom(&mut self) { + self.active_workspace().focus_window_bottom(); + } + + pub fn focus_window_down_or_top(&mut self) { + self.active_workspace().focus_window_down_or_top(); + } + + pub fn focus_window_up_or_bottom(&mut self) { + self.active_workspace().focus_window_up_or_bottom(); + } + pub fn move_to_workspace_up(&mut self) { let source_workspace_idx = self.active_workspace_idx; -- cgit