아침에 트위터에서 vcprompt 관련 내용을 보고 나도 써봐야 겠다는 생각이 들어 적용하고 관련 내용 정리 함.
1. vcprompt 설치
- mac
$brew install vcprompt
- linux
https://github.com/djl/vcprompt 에서 다운로드 및 설치
2. .bash_prpfile 또는 .bashrc에 추가
export PATH=~/bin:$PATH POWDER_BLUE=$(tput setaf 153)
BRIGHT=$(tput bold)
BLINK=$(tput blink)
REVERSE=$(tput smso)
txtblk=$(tput setaf 0) # Black - Regular
txtred=$(tput setaf 1) # Red
txtgrn=$(tput setaf 2) # Green
txtylw=$(tput setaf 3) #Yellow
txtblu=$(tput setaf 4) # Blue
txtpur=$(tput setaf 5) # Purple
txtcyn=$(tput setaf 6) # Cyan
txtwht=$(tput setaf 7) # White
txtrst=$(tput sgr0) # Text Reset
txtbold=$(tput bold) # Bold
VCPROMPT_FORMAT="(${txtylw}%n${txtrst}:${txtcyn}%r${txtrst}@${txtgrn}%b${txtred}%m${txtpur}%u${txtrst})"
export VCPROMPT_FORMAT=$VCPROMPT_FORMAT
print_before_the_prompt () {
echo "${txtred}$USER@${txtrst}${txtbold}${txtgrn}$PWD${txtrst} $(vcprompt)"
#printf "/[${txtred}/]%s@$bldgrn%s${txtrst} %s\n" "$USER" "$PWD" "$(vcprompt)"
}
PROMPT_COMMAND=print_before_the_prompt
PS1='$' |
3. 터미널 화면
4. 참고
1. http://net.tutsplus.com/tutorials/other/how-to-customize-the-command-prompt/
2. https://github.com/djl/vcprompt
3. http://blog.outsider.ne.kr/737
'Computer' 카테고리의 다른 글
Mac OS X에 jekyll 설치시 오류 (0) | 2012.06.06 |
---|---|
SourceTree에서 github 계정 정보설정 (0) | 2012.06.06 |
SPC-3100s (0) | 2010.01.01 |
팩스 또는 메일 작성시 서버에 등록한 연락처 사용 (0) | 2008.06.05 |
게임 개발 관련 북마크 정리 (0) | 2008.06.05 |
대기모드 복수시 X61t LDC 깜박거리는 문제 (0) | 2008.02.10 |
임시파일 삭제 배치파일 (0) | 2007.12.19 |
아래한글에서 B4문서 A4 종이에 출력하기 (0) | 2007.12.19 |
엑셀에서 특정 행이나 열을 페이자마다 출력하는 방법 (0) | 2007.12.19 |
IMAP 폴더에서 지운 항목 복원 및 제거 (0) | 2006.09.02 |