17 lines
252 B
Bash
17 lines
252 B
Bash
# includes
|
|
if [ -f "$HOME/.bashrc" ]; then
|
|
. "$HOME/.bashrc"
|
|
fi
|
|
|
|
if [ -f "$HOME/.bash_exports" ]; then
|
|
. "$HOME/.bash_exports"
|
|
fi
|
|
|
|
|
|
# bash decorations
|
|
# arch-linux default:
|
|
# PS1='[\u@\h \W]\$ '
|
|
# servers:
|
|
# PS1='|\u@\h \W|\$ '
|
|
PS1='[\u@\h \W]\$ '
|