dotfiles/.bashrc

106 lines
2.3 KiB
Bash
Raw Normal View History

2013-10-28 13:41:02 +00:00
#
2014-04-27 18:46:00 +00:00
# Asara's bashrc
#
2013-10-28 13:41:02 +00:00
# Check if the shell is non-interactive
if [[ $- != *i* ]] ; then
# Shell is non-interactive. Be done now!
return
fi
2014-04-27 18:42:55 +00:00
### HISTORY OPTIONS ###
2013-10-28 13:41:02 +00:00
# Ignore duplicate commands and commands starting with a space for Bash history
HISTCONTROL=ignoredups:ignorespace
# Bash History file size
HISTSIZE=1000
HISTFILESIZE=2000
2014-04-27 18:42:55 +00:00
### SHELL OPTIONS ###
# fix text wrap based on windows size
2013-10-28 13:41:02 +00:00
shopt -s checkwinsize
2014-04-27 18:42:55 +00:00
# append to the history file, don't overwrite it
shopt -s histappend
# entering directory name will automatically cd to it.
shopt -s autocd
# make multiline input single line in history (i.e. \)
shopt -s cmdhist
### ALIASES ###
2013-10-28 13:41:02 +00:00
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
alias dir='dir --color=auto'
alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi
# some ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
2014-04-27 18:42:55 +00:00
# IP
alias ipme='wget -qO - icanhazip.com'
alias speedtest='wget --output-document=/dev/null http://speedtest.wdc01.softlayer.com/downloads/test500.zip'
alias netlist='lsof -i -nP'
### SHELL SETTINGS ###
2013-10-28 13:41:02 +00:00
# Bash Prompt
PS1="\[\033[35m\]\t\[\033[m\]-\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[31;1m\]\w\[\033[m\]\$ "
2014-04-24 18:52:00 +00:00
2013-10-28 13:41:02 +00:00
# Export environmental variables
export EDITOR=vim
2014-04-27 18:48:22 +00:00
export VISUAL=vim
2014-04-24 18:52:00 +00:00
export BROWSER=firefox
2013-10-28 13:41:02 +00:00
2014-04-27 18:42:55 +00:00
### FUNCTIONS ###
2013-10-28 13:41:02 +00:00
# Easy Extract
extract () {
if [ -f $1 ] ; then
case $1 in
*.tar.bz2) tar xvjf $1 ;;
*.tar.gz) tar xvzf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar x $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xvf $1 ;;
*.tbz2) tar xvjf $1 ;;
*.tgz) tar xvzf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1 ;;
*.7z) 7z x $1 ;;
*) echo "I dont know how to extract $1..." ;;
esac
else
echo "`$1` is not a file!"
fi
}
# Source external file
if [[ -f ~/.customrc ]]; then
. ~/.customrc
fi
2014-05-22 02:56:32 +00:00
if [[ -f ~/.update ]]; then
2014-05-30 18:42:34 +00:00
. ~/.update
2014-05-22 02:56:32 +00:00
fi
bash ~/.motd