Added wallpapers
This commit is contained in:
parent
4de54679ea
commit
bb5c7e2fa5
26
bash/.bashrc
26
bash/.bashrc
|
@ -57,9 +57,9 @@ match_lhs=""
|
||||||
[[ -z ${match_lhs} ]] \
|
[[ -z ${match_lhs} ]] \
|
||||||
&& type -P dircolors >/dev/null \
|
&& type -P dircolors >/dev/null \
|
||||||
&& match_lhs=$(dircolors --print-database)
|
&& match_lhs=$(dircolors --print-database)
|
||||||
[[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true
|
[[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true
|
||||||
|
|
||||||
if ${use_color} ; then
|
if ${use_color} ; then
|
||||||
# Enable colors for ls, etc. Prefer ~/.dir_colors #64489
|
# Enable colors for ls, etc. Prefer ~/.dir_colors #64489
|
||||||
if type -P dircolors >/dev/null ; then
|
if type -P dircolors >/dev/null ; then
|
||||||
if [[ -f ~/.dir_colors ]] ; then
|
if [[ -f ~/.dir_colors ]] ; then
|
||||||
|
@ -79,26 +79,26 @@ if ${use_color} ; then
|
||||||
alias grep='grep --colour=auto'
|
alias grep='grep --colour=auto'
|
||||||
alias egrep='egrep --colour=auto'
|
alias egrep='egrep --colour=auto'
|
||||||
alias fgrep='fgrep --colour=auto'
|
alias fgrep='fgrep --colour=auto'
|
||||||
else
|
else
|
||||||
if [[ ${EUID} == 0 ]] ; then
|
if [[ ${EUID} == 0 ]] ; then
|
||||||
# show root@ when we don't have colors
|
# show root@ when we don't have colors
|
||||||
PS1='\u@\h \W \$ '
|
PS1='\u@\h \W \$ '
|
||||||
else
|
else
|
||||||
PS1='\u@\h \w \$ '
|
PS1='\u@\h \w \$ '
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
unset use_color safe_term match_lhs sh
|
unset use_color safe_term match_lhs sh
|
||||||
|
|
||||||
alias cp="cp -i" # confirm before overwriting something
|
alias cp="cp -i" # confirm before overwriting something
|
||||||
alias df='df -h' # human-readable sizes
|
alias df='df -h' # human-readable sizes
|
||||||
alias free='free -m' # show sizes in MB
|
alias free='free -m' # show sizes in MB
|
||||||
alias np='nano -w PKGBUILD'
|
alias np='nano -w PKGBUILD'
|
||||||
alias more=less
|
alias more=less
|
||||||
|
|
||||||
xhost +local:root > /dev/null 2>&1
|
xhost +local:root > /dev/null 2>&1
|
||||||
|
|
||||||
complete -cf sudo
|
complete -cf sudo
|
||||||
|
|
||||||
# Bash won't get SIGWINCH if another process is in the foreground.
|
# Bash won't get SIGWINCH if another process is in the foreground.
|
||||||
# Enable checkwinsize so that bash will check the terminal size when
|
# Enable checkwinsize so that bash will check the terminal size when
|
||||||
|
@ -176,6 +176,6 @@ export GIT_EDITOR=vim
|
||||||
#Aliases
|
#Aliases
|
||||||
alias oc="/home/jfm/Tools/openshift-origin-client/oc"
|
alias oc="/home/jfm/Tools/openshift-origin-client/oc"
|
||||||
alias code="cd /home/jfm/Customers/TDC/Code/Onboarding"
|
alias code="cd /home/jfm/Customers/TDC/Code/Onboarding"
|
||||||
|
alias tdc="cd /home/jfm/Customers/TDC"
|
||||||
alias prod="ssh -fN sochi"
|
alias prod="ssh -fN sochi"
|
||||||
alias top="htop"
|
alias top="htop"
|
||||||
alias subl="subl3"
|
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 53 KiB |
Binary file not shown.
After Width: | Height: | Size: 426 KiB |
Loading…
Reference in New Issue