Skip to content

Instantly share code, notes, and snippets.

@iguanajuice
iguanajuice / scratchpad.sh
Last active May 2, 2025 06:39
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)"
'`
@iguanajuice
iguanajuice / swaywait.sh
Last active January 26, 2025 07:11
Run a sway command when a window appears. Like `for_window` but temporary.
#!/bin/sh
if [ $# -ne 2 ]
then
echo "Usage: swaywait [app_id/class] [sway_command]"
exit 1
fi
TARGET=$1
COMMAND=$2