13 lines
305 B
Plaintext
13 lines
305 B
Plaintext
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
PS1='\[$(tput bold)$(tput setaf 2)\]\u@\h\[$(tput sgr0)\]:'
|
|
PS1+='\[$(tput bold)$(tput setaf 4)\]\W\[$(tput sgr0)\]$ '
|
|
. /usr/share/bash-completion/bash_completion
|
|
|
|
alias ls='ls --color=auto'
|
|
alias xo='xdg-open'
|