Created
February 20, 2015 01:08
-
-
Save stroum/0c9e55e0b35605818243 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias l='ls -CFa' | |
export GOPATH=~/go | |
export PATH="$PATH:$GOPATH/bin" | |
export GOARCH=arm | |
export GOARM=7 | |
export CGO_ENABLED=1 | |
export GOOS=linux | |
txtblk='\[\033[0;30m\]' # Black - Regular | |
txtred='\[\033[0;31m\]' # Red | |
txtgrn='\[\033[0;32m\]' # Green | |
txtylw='\[\033[0;33m\]' # Yellow | |
txtblu='\[\033[0;34m\]' # Blue | |
txtpur='\[\033[0;35m\]' # Purple | |
txtcyn='\[\033[0;36m\]' # Cyan | |
txtwht='\[\033[0;37m\]' # White | |
bldblk='\[\033[1;30m\]' # Black - Bold | |
bldred='\[\033[1;31m\]' # Red | |
bldgrn='\[\033[1;32m\]' # Green | |
bldylw='\[\033[1;33m\]' # Yellow | |
bldblu='\[\033[1;34m\]' # Blue | |
bldpur='\[\033[1;35m\]' # Purple | |
bldcyn='\[\033[1;36m\]' # Cyan | |
bldwht='\[\033[1;37m\]' # White | |
unkblk='\[\033[4;30m\]' # Black - Underline | |
undred='\[\033[4;31m\]' # Red | |
undgrn='\[\033[4;32m\]' # Green | |
undylw='\[\033[4;33m\]' # Yellow | |
undblu='\[\033[4;34m\]' # Blue | |
undpur='\[\033[4;35m\]' # Purple | |
undcyn='\[\033[4;36m\]' # Cyan | |
undwht='\[\033[4;37m\]' # White | |
bakblk='\[\033[40m\]' # Black - Background | |
bakred='\[\033[41m\]' # Red | |
bakgrn='\[\033[42m\]' # Green | |
bakylw='\[\033[43m\]' # Yellow | |
bakblu='\[\033[44m\]' # Blue | |
bakpur='\[\033[45m\]' # Purple | |
bakcyn='\[\033[46m\]' # Cyan | |
bakwht='\[\033[47m\]' # White | |
txtrst='\[\033[0m\]' # Text Reset | |
# format | |
PS1="${bldwht}[${txtrst}${bldred}\u${txtrst}${bldwht}@${txtrst}${bldcyn}\h${txtrst}${bldwht}]${txtrst}${bldwht} \w${txtrst} " | |
# PS1='\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' | |
# enable color support for some commands | |
if [ -x /usr/bin/dircolors ]; then | |
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" | |
alias ls='ls --color=auto' | |
alias grep='grep --color=auto' | |
alias fgrep='fgrep --color=auto' | |
alias egrep='egrep --color=auto' | |
fi | |
alias alert='notify-send -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' | |
# completion | |
if [ -f /etc/bash_completion ]; then | |
. /etc/bash_completion | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment