맥에서 여러가지 테마를 지원하고 있긴 하지만 터미널 룩은 역시 우분투 스타일이 최고.
아래 설정 값 참고해 직접 설정해도 됨
배경: #300A24 서체: Monaco 12pt 문자간격 1.05 텍스트 색상: #CCCCCC 선택부분: 기본 색상 + 불투명도 57%
추가로 위 스크린샷처럼 prompt, ls color 도 변경하려면 .bash_profile 아래 내용을 적어주면 됨
force_color_prompt=yes if [ -n "$force_color_prompt" ]; then if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then # We have color support; assume it's compliant with Ecma-48 # (ISO/IEC-6429). (Lack of such support is extremely rare, and such # a case would tend to support setf rather than setaf.) color_prompt=yes else color_prompt= fi fi if [ "$color_prompt" = yes ]; then PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' else PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' fi unset color_prompt force_color_prompt # If this is an xterm set the title to user@host:dir case "$TERM" in xterm*|rxvt*) PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" ;; *) ;; esac # some more ls aliases alias ls='ls -G' alias ll='ls -alGF'