Skip to content

Instantly share code, notes, and snippets.

@bbb651
Last active December 4, 2025 19:57
Show Gist options
  • Select an option

  • Save bbb651/4f96381e288721f1c2a198253b8204e9 to your computer and use it in GitHub Desktop.

Select an option

Save bbb651/4f96381e288721f1c2a198253b8204e9 to your computer and use it in GitHub Desktop.
Niri Window Switcher
binds {
Alt+Tab { spawn "~/.config/niri/switcher.sh"; }
}
#!/bin/sh
windows=$(niri msg -j windows)
niri msg action focus-window --id $(echo "$windows" | jq ".[$(echo "$windows" | jq -r 'map("\(.title // .app_id)\u0000icon\u001f\(.app_id)") | .[]' | fuzzel -d --index)].id")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment