void-packages/srcpkgs/base-files/files/dot_profile

11 lines
127 B
Plaintext
Raw Normal View History

# Read /etc/profile
if [ -f /etc/profile ]; then
. /etc/profile
fi
PATH=$PATH:$HOME/bin
PS1="[\u@\h \W]$ "
export PATH PS1