Regenerated

This commit is contained in:
2026-04-01 19:21:26 +02:00
parent d8f77f14e5
commit 2ad249fe6c
5 changed files with 297 additions and 297 deletions
@@ -2,7 +2,7 @@
active_ws=$(hyprctl activeworkspace -j | jq -r '.id')
clients=$(hyprctl clients -j | jq -r \
".[] | select(.workspace.id==$active_ws) | \"\(.address)|\(.title)\"")
choice=$(echo "$clients" | cut -d'|' -f2 | rofi -dmenu -p "Windows")
choice=$(echo "$clients" | cut -d'|' -f2 | wofi -dmenu -p "Windows")
[ -z "$choice" ] && exit 0
addr=$(echo "$clients" | grep "|$choice" | head -n1 | cut -d'|' -f1)
hyprctl dispatch focuswindow address:$addr