---
title: "tmux popups"
description: "https://youtu.be/2I8fB28zfB4"
date: 2021-07-14
published: true
tags:
  - cli
  - linux
  - tmux
template: blog-post
---


[https://youtu.be/2I8fB28zfB4](https://youtu.be/2I8fB28zfB4){.youtube-embed}

Tmux-popups are a great feature that is relatively new to tmux, many repos such
as the standard ubuntu repos do not have it.   Popups came in 3.2a, if your
package manager does not have it, you can follow the [tmux's install
instructions](https://github.com/tmux/tmux#installation) to build from source.

``` bash
# open a popup scratchpad
bind -n M-g display-popup -E "tmux new-session -A -s scratch"
```

<a href="/tmux-nav-2021/" class="wikilink" data-title="How I navigate tmux in 2021" data-description="change_speed = (speed) =&gt; [...document.querySelectorAll(&#39;video&#39;)].map(v =&gt; v.playbackRate=v.playbackRate+speed)" data-date="2021-05-11">How I navigate tmux in 2021</a>

> for more information on how I navigate tmux, check out this full post

I use popups quite a bit in my workflow to ssh into another machine for a short
period, or make a new project with a template.
