-
-
Save cablehead/50fcd9a47f684372b6e4d3d493c89994 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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