Regenerated

This commit is contained in:
2026-04-13 15:10:46 +02:00
parent d5a86e576a
commit ff328201b5
6 changed files with 439 additions and 480 deletions
@@ -3,7 +3,13 @@
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 | wofi -dmenu -j -p "Active apps" --style ~/.config/wofi/style.css)
choice=$(echo "$clients" | cut -d'|' -f2 \
| wofi --dmenu \
--style ~/.config/wofi/style.css \
--allow-images=false \
--prompt "Active apps")
[ -z "$choice" ] && exit 0
addr=$(echo "$clients" | grep "|$choice" | head -n1 | cut -d'|' -f1)
hyprctl dispatch focuswindow address:$addr
hyprctl dispatch focuswindow address:"$addr"
@@ -3,6 +3,6 @@
wofi --show drun \
--style ~/.config/wofi/style.css \
--no-actions \
--allow-images=false \
--allow-images=true \
--columns 1 \
--prompt "Apps"