# BASHRC
-# Environment variables
+# Environment variables strictly related to the machine
if [ -f ~/.bash_env ]; then
. ~/.bash_env
fi
+# Environment variables
+if [ -f ~/.config/some.files/bash/env.sh ]; then
+ . ~/.config/some.files/bash/env.sh
+fi
+
# To avoid duplicate lines in bash History
HISTCONTROL=ignoreboth
done
# End Load Procedures
-if [ -z "$TMUX" ]; then
- tmux
+if [ -n "$PS1" -a -z "$TMUX" ]; then
+ tmux && exit
fi
if [ -n "$PS1" -a -n "$TMUX" ]; then