From 5415444e1503c371c8bc1f873f0ae4db281834e1 Mon Sep 17 00:00:00 2001 From: Kangheng Liu <72962885+kanghengliu@users.noreply.github.com> Date: Sat, 25 Apr 2026 12:07:18 -0400 Subject: [PATCH] keybinds: add move workspace to monitor keybinds (#2268) and distinguish with move columns --- quickshell/Common/KeybindActions.js | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/quickshell/Common/KeybindActions.js b/quickshell/Common/KeybindActions.js index e5f1662a..f996c8e1 100644 --- a/quickshell/Common/KeybindActions.js +++ b/quickshell/Common/KeybindActions.js @@ -161,10 +161,16 @@ const NIRI_ACTIONS = { { id: "focus-monitor-right", label: "Focus Monitor Right" }, { id: "focus-monitor-down", label: "Focus Monitor Down" }, { id: "focus-monitor-up", label: "Focus Monitor Up" }, - { id: "move-column-to-monitor-left", label: "Move to Monitor Left" }, - { id: "move-column-to-monitor-right", label: "Move to Monitor Right" }, - { id: "move-column-to-monitor-down", label: "Move to Monitor Down" }, - { id: "move-column-to-monitor-up", label: "Move to Monitor Up" } + { id: "move-column-to-monitor-left", label: "Move Column to Monitor Left" }, + { id: "move-column-to-monitor-right", label: "Move Column to Monitor Right" }, + { id: "move-column-to-monitor-down", label: "Move Column to Monitor Down" }, + { id: "move-column-to-monitor-up", label: "Move Column to Monitor Up" }, + { id: "move-workspace-to-monitor-left", label: "Move Workspace to Monitor Left" }, + { id: "move-workspace-to-monitor-right", label: "Move Workspace to Monitor Right" }, + { id: "move-workspace-to-monitor-down", label: "Move Workspace to Monitor Down" }, + { id: "move-workspace-to-monitor-up", label: "Move Workspace to Monitor Up" }, + { id: "move-workspace-to-monitor-next", label: "Move Workspace to Next Monitor" }, + { id: "move-workspace-to-monitor-previous", label: "Move Workspace to Previous Monitor" } ], "Screenshot": [ { id: "screenshot", label: "Screenshot (Interactive)" },