💾 Archived View for republic.circumlunar.space › users › johngodlee › posts › 2021-07-10-tmux_popup.… captured on 2021-12-04 at 18:04:22. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
DATE: 2021-07-10
AUTHOR: John L. Godlee
I was inspired by this video[1], which uses the pop-up window feature in tmux[2] v3.2+ to quickly launch scripts that don't deserve their own pane. I wrote a similar script to handle the pop-ups, which I keep in my $PATH:
1: https://www.youtube.com/watch?v=41JxYe70Xwo
2: https://github.com/tmux/tmux
#!/usr/bin/env sh # List scripts read -d '' APPS << EOF passwords ~/bin/tmux_popup/./fpass_popup mount drives ~/bin/netmount search papers ~/bin/papers stopwatch ~/bin/stopwatch internet speed test ~/bin/speed emojis ~/bin/tmux_popup/./emoji_popup calculator ~/bin/tmux_popup/./calc_popup EOF SELECTED="$(echo "$APPS" | fzf -d " " --with-nth 1 | sed "s/.*\t//g")" eval "${SELECTED}"
The scripts are listed by their name, which appears in the fzf pop-up, and their path, separated by a tab.
The scripts currently available in the popup:
The script is launched by hitting <prefix>-Tab in tmux, using this line in my .tmux.conf:
bind-key Tab capture-pane \; save-buffer /tmp/tmux-buffer \; delete-buffer \; display-popup -w 50% -h 50% -E "/path/to/fzf-speed"