15 lines
		
	
	
		
			393 B
		
	
	
	
		
			Bash
		
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			393 B
		
	
	
	
		
			Bash
		
	
	
	
| #
 | |
| # 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"
 |