1
1
Fork 0
dotfiles/tmux/install.sh
2019-08-04 16:54:19 -05:00

16 lines
373 B
Bash

#!/bin/bash
echo "🤔 Checking for Tmux installation..."
if tmux -V; then
echo "🥰 Tmux is already installed"
else
echo "🤩 Installing Tmux Terminal"
sudo apt-get install tmux
echo "👍 Tmux installed"
fi
echo "🦄 Configuring Tmux"
if [ -f ~/.tmux.conf ]; then
rm ~/.tmux.conf
fi
ln -s ~/dotfiles/tmux/.tmux.conf ~/.tmux.conf
echo "👍 Tmux configured"