From e334a6b1a235cf35aa9125b40aea5d0ac65328ff Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Fri, 7 Jul 2023 14:04:36 -0500 Subject: [PATCH] refactor(hypr): improve workspace movement This permits for sending multiple windows at once without need to going back to the workspace --- dots/.config/hypr/scripts/move-workspace-mon.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/hypr/scripts/move-workspace-mon.bash b/dots/.config/hypr/scripts/move-workspace-mon.bash index ea2ba3e8..777f2d90 100755 --- a/dots/.config/hypr/scripts/move-workspace-mon.bash +++ b/dots/.config/hypr/scripts/move-workspace-mon.bash @@ -6,7 +6,7 @@ main() { local focused_monitor focused_monitor="$(hyprctl monitors -j | jq -c '.[] | select(.focused)' | jq -r '.name')" - hyprctl dispatch movetoworkspace "${workspace_id}" + hyprctl dispatch movetoworkspacesilent "${workspace_id}" hyprctl dispatch movecurrentworkspacetomonitor "${focused_monitor}" }