aesthetic terminal experience
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Extra Aliases |
|
alias b='cd ..' |
|
|
|
# Checks for active tmux |
|
tmux ls &> /dev/null |
|
if [ $? -eq 0 ] && [ -z "$TMUX" ]; then |
|
echo "\nYou have an active tmux session! Run 'tmux attach' to restore it.\n" |
|
elif [ -z "$TMUX" ]; then |
|
tmux new -s "tmux" |
|
fi
|
|
|