From 69c05d0b37950be0a5dec43f74ea26c02dab1870 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Wed, 23 Sep 2015 23:05:34 +0100 Subject: [PATCH] Revert "Add the launch of tmux, if available." This reverts commit 77e9a05e9c29b9b544b61ba0744775ed7f9b84a0. --- .bashrc | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.bashrc b/.bashrc index 0fab668..6c7ecc0 100644 --- a/.bashrc +++ b/.bashrc @@ -75,17 +75,3 @@ for FILE in ~/.bash/auto_complete.d/*; do source ${FILE}; done #-------------------------------------------------------------------------------- [ -f ~/.bashrc_local ] && source ~/.bashrc_local - -#-------------------------------------------------------------------------------- -# Launch tmux, if available -#-------------------------------------------------------------------------------- -if which tmux &> /dev/null; then - if ! tmux attach &> /dev/null; then - if [[ ! $TERM =~ screen ]]; then - exec tmux - fi - else - exit - fi -fi -#--------------------------------------------------------------------------------