dotfiles/dot_bashrc

13 lines
379 B
Plaintext

# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# Set up terminal variables and scripts
[[ -f ~/.bash_setup.sh ]] && . ~/.bash_setup.sh
# Set aliases if aliases exist
[[ -f ~/.bash_alias.sh ]] && . ~/.bash_alias.sh
# Helpful tool: https://bash-prompt-generator.org
# On github: https://github.com/Scriptim/bash-prompt-generator
PS1='[\u@\h \w]\$ '