Skip to content

Instantly share code, notes, and snippets.

@NickPiscitelli
Created February 3, 2023 00:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NickPiscitelli/e5eeaa2f3c8189dd29889967b0109ebd to your computer and use it in GitHub Desktop.
Save NickPiscitelli/e5eeaa2f3c8189dd29889967b0109ebd to your computer and use it in GitHub Desktop.
Kitty kitten to select tab via fzf
#!/bin/bash
tabs="$( kitty @ ls | jq -r '.[] | .tabs[] | .title' )"
tab="$(fzf --reverse <<< "${tabs}")"
kitty @ focus-tab -m "window_title:${tab}"
# map ctrl+shift+p launch --allow-remote-control --type=overlay kitty-tab-select
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment