dotfiles/shell/.bash_additions

15 lines
393 B
Bash
Raw Normal View History

2017-12-07 10:48:49 +00:00
#
# 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\] \\$ "
2017-12-08 06:29:29 +00:00
2018-01-16 11:58:48 +00:00
# Add local folders to PATH
2020-02-04 20:10:46 +00:00
PATH="$PATH:$HOME/.local/bin:$HOME/.local/scripts/public:$HOME/.local/scripts/private"
2018-01-16 11:58:48 +00:00
2017-12-08 06:29:29 +00:00
# Old habits die hard
alias screenfetch="neofetch"
2018-01-16 11:58:48 +00:00
alias qemu="qemu-system-x86_64"