码迷,mamicode.com
首页 > 其他好文 > 详细

gnome-terminal的一些调整

时间:2014-11-29 22:50:00      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   sp   on   div   bs   ad   ef   

通过一些修改让命令行用的更加舒服

  • 彩色显示
  1. case "$TERM" in
  2. xterm-color) color_prompt=yes;;
  3. esac

改成

  1. case "$TERM" in
  2. xterm|xterm-color) color_prompt=yes;;
  3. esac
  • 提示符另起一行
  1. if [ "$color_prompt" = yes ]; then
  2.     PS1=‘${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ‘
  3. else
  4.     PS1=‘${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ‘

改成

  1. if [ "$color_prompt" = yes ]; then
  2.     PS1=‘${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\n\$ ‘
  3. else
  4.     PS1=‘${debian_chroot:+($debian_chroot)}\u@\h:\w\n\$ ‘




gnome-terminal的一些调整

标签:style   http   color   sp   on   div   bs   ad   ef   

原文地址:http://www.cnblogs.com/joyzhuang/p/4132045.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!