🚚 refactor tmux isntall to separate script

This commit is contained in:
DannyDannyDanny 2023-06-08 11:15:45 +02:00
parent 18671b7741
commit d9c3c12b82
2 changed files with 9 additions and 8 deletions

8
install_tmux.sh Executable file
View file

@ -0,0 +1,8 @@
echo >&2 "====================================================================="
echo >&2 " >> installing tmux"
TMUX_VERSION=3.3a
curl -LO https://github.com/tmux/tmux/releases/download/${TMUX_VERSION}/tmux-${TMUX_VERSION}.tar.gz
tar -zxf tmux-${TMUX_VERSION}.tar.gz
cd tmux-${TMUX_VERSION}/
./configure
make && sudo make install