dotfiles/install_tmux.sh
2023-06-11 20:17:34 +02:00

18 lines
579 B
Bash
Executable file

#!/bin/bash
echo >&2 "====================================================================="
echo >&2 " >> installing tmux"
TMUX_VERSION=3.3a
echo >&2 " >>> downloading file"
curl -LO https://github.com/tmux/tmux/releases/download/${TMUX_VERSION}/tmux-${TMUX_VERSION}.tar.gz
echo >&2 " >>> decompressing"
tar -zxf tmux-${TMUX_VERSION}.tar.gz
echo >&2 " >>> changing into tmux src"
cd tmux-${TMUX_VERSION}/
echo >&2 " >>> running .configure"
./configure
echo >&2 " >>> listing file in current dir"
echo >&2 $(ls -la)
echo >&2 " >>> running .configure"
make && sudo make install