Files
dotfiles/.bash_profile
2026-04-25 10:20:12 +03:00

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]\$ '