You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No need to install a slew of build packages on your own machine.
You can trust the tmux developers code, not some rando's AppImage distribution on the interwebz :p
Build it yourself from source code
I assume you have docker installed already.
#### clone me & change directory
git clone https://github.com/nelsonenzo/tmux-appimage.git
cd tmux-appimage
#### Set the desired tmux release tag and build
export TMUX_RELEASE_TAG=3.5a
docker build . -t tmux --build-arg TMUX_RELEASE_TAG=$TMUX_RELEASE_TAG
#### extract the appimage file
docker create -ti --name tmuxcontainer tmux bash
docker cp tmuxcontainer:/opt/build/tmux.appimage .
docker rm -f tmuxcontainer
ls -al tmux.appimage
Where has the AppImage been tested to turn?
It has been tested on these fine Linux platforms and will likely work for anything newer than centos 6.9 (which is a few years old now.) Please file an issue if you find otherwise or need support on a different platform.
The distributed build will not work on old os's (like Centos 6), since they have older glibc libraries.
If you need it to work on those systems, try modifying the Dockerfile to use an older ubuntu as the base image and doing a docker build.
What is the sauce that makes this work?
The Dockerfile contains all the magic ingredients to compile tmux.
Huge thank you to https://github.com/michaellee8, whom taught me a lot about appimage builds with his code contributions.