Remove useless TMUX call from bash

This commit is contained in:
2024-10-13 19:45:21 +01:00
parent 2f3f11b664
commit a80814d737

View File

@@ -642,13 +642,6 @@ in
set -o vi
export EDITOR="nvim";
export PS1="\n[\[\e[37m\]\u\[\e[0m\]@\[\e[37;2m\]\h\[\e[0m\]] \[\e[1m\]\w \[\e[0;2m\]J:\[\e[0m\]\j\n\$ ";
if [[ -z $TMUX ]]; then
tmux attach
if [[ $? == 1 ]]; then
tmux new -s main
fi
fi
'';
};