mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-15 19:30:51 +01:00
8e05ad4cae
This is a new command that came out 2 weeks ago.
12 lines
436 B
Bash
Executable File
12 lines
436 B
Bash
Executable File
#!/bin/sh
|
|
# Tag-like script that moves windows from X workspace to the current workspace
|
|
|
|
# Get IDs of windows on the other workspace
|
|
ids="$(hyprctl clients -j | jq -r ".[] | select(.workspace.id == "$1") | .address")"
|
|
|
|
# Move those windows to the current workspace
|
|
for id in $ids; do
|
|
hyprctl dispatch movetoworkspacesilent "$(hyprctl activeworkspace -j | jq -r '.id')",address:"$id"
|
|
hyprctl dispatch focuswindow address:"$id"
|
|
done
|