Skip to content

Commit

Permalink
fix(ubuntu_setup.sh): delete tmux custom installation
Browse files Browse the repository at this point in the history
Signed-off-by: asana17 <kei17.kaight084@gmail.com>
  • Loading branch information
asana17 committed Jul 18, 2024
1 parent 6f37b2d commit 6fad494
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions scripts/ubuntu_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,20 +125,6 @@ tilix_install() {
fi
}

tmux_install() {
pkg_install make libevent-dev
wget https://github.com/tmux/tmux/releases/download/3.3a/tmux-3.3a.tar.gz
tar -zxvf tmux-3.3a.tar.gz
cd tmux-3.3a
./configure
make && sudo make install
sudo ln -s /usr/local/bin/tmux /usr/bin/tmux
if ! command -v tmux &> /dev/null; then
error "tmux" "tmux not found in /usr/local/bin/tmux"
fi
cd ..
}

zsh_install() {
pkg_install zsh
zsh -c "source ~/.zshrc; exit"
Expand Down Expand Up @@ -174,13 +160,12 @@ done
sudo apt-get update

pkg_install curl git ripgrep tar unzip wget trash-cli \
build-essential python3-venv python3-pip clang
build-essential python3-venv python3-pip clang tmux

non_interactive_pkg_install tzdata

node_install

copy dotfiles from github
dotfiles_setup

terminal_padding
Expand All @@ -193,8 +178,6 @@ fzf_install

neovim_install

tmux_install

chrome_install
tilix_install
nemo_install
Expand Down

0 comments on commit 6fad494

Please sign in to comment.