Skip to content

Instantly share code, notes, and snippets.

@cablehead
Created July 3, 2024 13:57
Show Gist options
  • Save cablehead/50fcd9a47f684372b6e4d3d493c89994 to your computer and use it in GitHub Desktop.
Save cablehead/50fcd9a47f684372b6e4d3d493c89994 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# select a tmux window (ordered by recent used) with fzf and focus
tmux list-windows -F "#{window_activity} #{window_index} #{window_name}" |
sort -nrk 1 |
cut -d' ' -f2- |
fzf |
cut -d' ' -f1 |
xargs -I {} tmux select-window -t ':{}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment