1
0
forked from extern/nix-config
donovanglover-nix-config/tags.sh
Donovan Glover 328f30151b
hyprland: Source non-trivial scripts
I may simplify this later.
2023-05-12 01:29:35 -04:00

12 lines
476 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 monitors -j | jq -r '.[] | select(.focused==true) | .activeWorkspace.id')",address:"$id"
hyprctl dispatch focuswindow address:"$id"
done