dotfiles/tmux/install.sh

39 lines
1.2 KiB
Bash
Raw Normal View History

2020-11-02 04:08:18 +00:00
#!/bin/sh
2020-09-17 10:40:17 +00:00
2020-11-02 04:08:18 +00:00
set -e
DIR=$(readlink -f "$(dirname "$0")")
. "$DIR/../env.sh"
2020-09-17 10:40:17 +00:00
TMUX_VER=3.1b
# install ranger
case "$PM" in
apt)
2020-11-02 04:08:18 +00:00
if command -v tmux &>/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
2020-11-02 04:08:18 +00:00
if in_china; then
TMUX_SRC_URL="https://gitee.com/klesh/tmux/repository/archive/$TMUX_VER?format=tar.gz"
fi
2020-11-02 04:08:18 +00:00
[ ! -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
2020-11-02 04:08:18 +00:00
cd /tmp/tmux
[ -f autogen.sh ] && sh autogen.sh
./configure && make
sudo make install
2020-11-02 04:08:18 +00:00
cd -
rm -rf /tmp/tmux*
2020-09-17 10:40:17 +00:00
fi
;;
pacman)
2020-09-18 18:01:58 +00:00
sudo pacman -S --needed tmux bc
2020-09-17 10:40:17 +00:00
;;
esac
# symlink configuration
2020-11-02 04:08:18 +00:00
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"