Skip to content

Instantly share code, notes, and snippets.

@iguanajuice
Last active May 2, 2025 06:39
Show Gist options
  • Save iguanajuice/a4a795eb7362bb00035552d9e57c988e to your computer and use it in GitHub Desktop.
Save iguanajuice/a4a795eb7362bb00035552d9e57c988e to your computer and use it in GitHub Desktop.
Use fuzzel to focus windows in Sway's scratchpad
#!/bin/sh
pkill fuzzel && exit
LIST=`swaymsg -t get_tree | jq -r '
.nodes[].nodes[].floating_nodes[] |
select(.marks==[] and .scratchpad_state!="none") |
"[\(.id)] \(.name)"
'`
[ `echo "$LIST" | wc -l` -gt 1 ] &&
SELECTION=`printf "$LIST" | fuzzel -dw120` ||
SELECTION="$LIST"
CONID=`printf "$SELECTION" | awk '{print $1}' | tr [] \ `
swaymsg "[con_id=$CONID] scratchpad show"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment