메뉴 건너뛰기

컴' 게시판

본문시작

IT/개발
2013.11.25 02:40

MAC Terminal 색상변경

조회 수 34817 추천 수 0 댓글 0

# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'

# Colorful Bash Prompt, inspired by "Extravagant Zsh Prompt"
# Screenshot: http://img.gf3.ca/d54942f474256ec26a49893681c49b5a.png
# A big thanks to amethyst on Freenode

if [[ $COLORTERM = gnome-* && $TERM = xterm ]]  && infocmp gnome-256color >/dev/null 2>&1; then export TERM=gnome-256color
elif infocmp xterm-256color >/dev/null 2>&1; then export TERM=xterm-256color
fi

if tput setaf 1 &> /dev/null; then
    tput sgr0
    if [[ $(tput colors) -ge 256 ]] 2>/dev/null; then
      MAGENTA=$(tput setaf 9)
      ORANGE=$(tput setaf 172)
      GREEN=$(tput setaf 190)
      PURPLE=$(tput setaf 141)
      WHITE=$(tput setaf 256)
    else
      MAGENTA=$(tput setaf 5)
      ORANGE=$(tput setaf 4)
      GREEN=$(tput setaf 2)
      PURPLE=$(tput setaf 1)
      WHITE=$(tput setaf 7)
    fi  
    BOLD=$(tput bold)
    RESET=$(tput sgr0)
else
    MAGENTA="33[1;31m"
    ORANGE="33[1;33m"
    GREEN="33[1;32m"
    PURPLE="33[1;35m"
    WHITE="33[1;37m"
    BOLD=""
    RESET="33[m"
fi

parse_git_dirty () {
  [[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*"
}
parse_git_branch () {
  git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* (.*)/1$(parse_git_dirty)/"
}

PS1="[${BOLD}${MAGENTA}]u [$WHITE]at [$ORANGE]h [$WHITE]in [$GREEN]w[$WHITE]$([[ -n $(git branch 2> /dev/null) ]] && echo " on ")[$PURPLE]$(parse_git_branch)[$WHITE]n$ [$RESET]"

# Always use color output for `ls`
if [[ "$OSTYPE" =~ ^darwin ]]; then
  alias ls="command ls -G"
  export LSCOLORS='Exfxcxdxbxegedabagacad'
else
  alias ls="command ls --color"
  export LS_COLORS='no=00:fi=00:di=01;35:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.ogg=01;35:*.mp3=01;35:*.wav=01;35:'
fi

export PATH="/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/MAMP/Library/bin:$PATH"

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"  # This loads RVM into a shell session.





http://pastie.org/5956228

./bash_profile




  1. 13
    Mar 2014
    12:23

    욕심버리기

    Category개인자료 By꿈자 Reply0 Views56326 Votes0
    Read More
  2. 20
    Feb 2014
    04:51

    Git 리비전

    CategoryIT/개발 By꿈자 Reply0 Views0 Votes0 secret
    Read More
  3. 04
    Feb 2014
    06:04

    AWS 속도면과 가격대비 합...

    CategoryIT/개발 By꿈자 Reply0 Views15329 Votes0
    Read More
  4. 29
    Jan 2014
    01:33

    Code Completion for CodeI...

    CategoryIT/개발 By꿈자 Reply0 Views17 Votes0
    Read More
  5. 23
    Jan 2014
    08:26

    ubuntu CPU사량량 체크

    CategoryIT/개발 By꿈자 Reply1 Views0 Votes0 secret
    Read More
  6. 21
    Jan 2014
    04:27

    How to simplify the way t...

    CategoryIT/개발 By꿈자 Reply0 Views15403 Votes0
    Read More
  7. 25
    Nov 2013
    02:40

    MAC Terminal 색상변경

    CategoryIT/개발 By꿈자 Reply0 Views34817 Votes0
    Read More
  8. 27
    Sep 2013
    05:29

    Hotlink protection in Nginx

    CategoryIT/개발 By꿈자 Reply0 Views17156 Votes0
    Read More
  9. 26
    Sep 2013
    01:53

    PM(기획자)과 일하는 방법

    CategoryIT/개발 By꿈자 Reply0 Views16839 Votes0
    Read More
  10. 25
    Sep 2013
    04:56

    한번쯤 확인해봐야 할 UI체...

    CategoryIT/개발 By꿈자 Reply0 Views17569 Votes0
    Read More
Board Pagination Prev 1 ... 7 8 9 10 11 ... 17 Next
/ 17