Skip to content

Instantly share code, notes, and snippets.

@apzentral
Last active July 18, 2022 01:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apzentral/3fe92322801258e13ef8de32199b5e6d to your computer and use it in GitHub Desktop.
Save apzentral/3fe92322801258e13ef8de32199b5e6d to your computer and use it in GitHub Desktop.
Install tmux script
#!/usr/bin/env bash
TMUX_VERSION=3.3
sudo apt-get update
sudo apt-get install -y libevent-dev libncurses-dev make
wget "https://github.com/tmux/tmux/releases/download/${TMUX_VERSION}/tmux-${TMUX_VERSION}.tar.gz"
tar xvzf "tmux-${TMUX_VERSION}.tar.gz"
cd "tmux-${TMUX_VERSION}/"
./configure && make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment