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.
14 lines
393 B
14 lines
393 B
# |
|
# Additions for bash shell. |
|
# Include at the end of .bashrc (Or .profile) |
|
# |
|
|
|
# Custom prompt |
|
export export PS1="\[\e[1;32m\]\h\[\e[m\] - \[\e[1;31m\]\u\[\e[m\] - \[\e[1;34m\]\W\[\e[m\] \\$ " |
|
|
|
# Add local folders to PATH |
|
PATH="$PATH:$HOME/.local/bin:$HOME/.local/scripts/public:$HOME/.local/scripts/private" |
|
|
|
# Old habits die hard |
|
alias screenfetch="neofetch" |
|
alias qemu="qemu-system-x86_64"
|
|
|