From c378c2f075845f6a8110be37ca7fbb7fc98721c7 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 29 Jan 2026 23:06:41 -0600 Subject: feat(hyprland): add pyprland for scratchpads, magnify, and window stashing Replace native special workspace scratchpads with pyprland to fix issue where new windows were captured by visible scratchpads. Add magnify on mod+Z and window stash scripts (mod+O to stash, mod+Alt+O stash others, mod+Shift+O restore). --- dotfiles/hyprland/.local/bin/stash-others | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 dotfiles/hyprland/.local/bin/stash-others (limited to 'dotfiles/hyprland/.local/bin/stash-others') diff --git a/dotfiles/hyprland/.local/bin/stash-others b/dotfiles/hyprland/.local/bin/stash-others new file mode 100755 index 0000000..5af6743 --- /dev/null +++ b/dotfiles/hyprland/.local/bin/stash-others @@ -0,0 +1,12 @@ +#!/bin/bash +# Stash all unfocused windows on current workspace to special:stash + +focused=$(hyprctl activewindow -j | jq -r '.address') +workspace=$(hyprctl activewindow -j | jq -r '.workspace.id') + +# Get all windows on current workspace except the focused one +hyprctl clients -j | jq -r --arg focused "$focused" --argjson ws "$workspace" \ + '.[] | select(.workspace.id == $ws and .address != $focused) | .address' | \ +while read -r addr; do + hyprctl dispatch movetoworkspacesilent special:stash,address:"$addr" +done -- cgit v1.2.3