dotfiles/tmux/install.sh

39 lines
1.2 KiB
Bash
Executable File

#!/bin/sh
set -e
DIR=$(readlink -f "$(dirname "$0")")
. "$DIR/../env.sh"
TMUX_VER=3.1b
# install ranger
case "$PM" in
apt)
if command -v tmux 2>/dev/null && [ "$(tmux -V)" != "tmux $TMUX_VER" ]; then
sudo apt install libevent-dev libncurses5-dev bison autoconf bc -y
TMUX_SRC_URL=https://github.com/tmux/tmux/releases/download/$TMUX_VER/tmux-$TMUX_VER.tar.gz
if in_china; then
TMUX_SRC_URL="https://gitee.com/klesh/tmux/repository/archive/$TMUX_VER?format=tar.gz"
fi
[ ! -f /tmp/tmux.tar.gz ] && curl -L "$TMUX_SRC_URL" -o /tmp/tmux.tar.gz
rm -rf /tmp/tmux
mkdir -p /tmp/tmux
tar zxvf /tmp/tmux.tar.gz -C /tmp/tmux --strip 1
cd /tmp/tmux
[ -f autogen.sh ] && sh autogen.sh
./configure && make
sudo make install
cd -
rm -rf /tmp/tmux*
fi
;;
pacman)
sudo pacman -S --needed tmux bc
;;
esac
# symlink configuration
lnsf "$DIR/tmux.conf" ~/.tmux.conf
lnsf "$DIR/config/tmux2.8.conf" "$XDG_CONFIG_HOME/tmux/tmux2.8.conf"
lnsf "$DIR/config/tmux2.9.conf" "$XDG_CONFIG_HOME/tmux/tmux2.9.conf"