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.
11 lines
1.1 KiB
11 lines
1.1 KiB
3 years ago
|
# 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
|