Skip to content

Instantly share code, notes, and snippets.

@NickPiscitelli
Created February 3, 2023 00:17
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