gnome-terminal的一些调整

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

  • 彩色显示
  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\]\[email protected]\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ‘
  3. else
  4.     PS1=‘${debian_chroot:+($debian_chroot)}\[email protected]\h:\w\$ ‘

改成

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

来自为知笔记(Wiz)

时间: 2024-10-09 06:50:37

gnome-terminal的一些调整的相关文章

Gnome Terminal,Xshell等终端模拟器中执行命令出现乱码问题解决

一.前言 Xshell跟Gnome Terminal相比,两者都是终端模拟器(在Xshell中也可以执行简单的内置命令,如"cd","ls"等),地位相同. 二.原理分析 涉及到乱码,那么需要了解编码解码过程.在终端模拟器中执行命令,通信过程示意图如图1所示. 图1 在以上通信过程中,在"命令执行单元"处发生了一系列的编码解码过程,在"终端模拟器"处也发生了一系列的编码解码过程,此外,我们常常创建SSH连接,从而建立一个远端S

How to Copy and Paste in the Ubuntu Gnome Terminal

How to Copy: Select the content in terminal use your mouse , and then use Ctrl + Shift + C to copy the content. How to Paste: Use Ctrl + Shift + V to paste the content. 版权声明:本文为博主原创文章,未经博主允许不得转载.

centos7.5英文环境切换到中文环境,再切回中文环境后 ,terminal不能用

1.查看系统日志 less /var/logs/message May 12 21:54:41 localhost python: SELinux is preventing /usr/libexec/ibus-x11 from read access on the file /usr/share/themes/Ant/gtk-3.20/gtk.css.#012#012*****  Plugin catchall (100. confidence) suggests   ************

gnome-tweak-tool设置gnome参数

GNOME Tweak Tool 是 GNOME 3 的优化配置工具,为我们带来 GNOME Shell 扩展安装功能,方便Linux用户对 Gnome Shell 进行一些调整. 主要功能有:安装,更改 Gnome-shell 主题更改 GTK 主题更改图标主题 可以更改 用户界面及标题字体菜单及按钮里的图标笔记本电脑合上盖子的行为Shell 字体大小文字管理器桌面图标标题栏点击行为Shell 时钟显示日期字体微调和反锯齿 如果你再最新的Ubuntu 12.10中还没有安装Gnoem Twea

linux - console/terminal/virtual console/pseudo terminal ...

http://en.wikipedia.org/wiki/System_console System console Knoppix system console showing the boot process The system console, computer console, root console, operator's console, or simply console is the text entry and display device for system admin

What are the differences between shell , console & terminal?

答案1: The shell is a typical Unix program. It reads commands from the standard input and prints something on the standard output. This is simple and good. The points is: In a graphical environment (like GNOME or KDE) a program cannot just write text d

《Linux命令行与Shell脚本编程大全第2版.布卢姆》pdf

下载地址:网盘下载 内容简介  · · · · · · 本书是一本关于Linux 命令行与shell 脚本编程的全面教程.全书分为四部分:第一部分介绍Linuxshell 命令行:第二部分介绍shell 脚本编程基础:第三部分深入探讨shell 脚本编程的高级内容:第四部分介绍如何在现实环境中使用shell 脚本.本书不仅涵盖了详尽的动手教程和现实世界中的实用信息,还提供了与所学内容相关的参考信息和背景资料. 本书内容全面,语言简练,示例丰富,适合于linux 系统管理员及Linux 爱好者阅读

《Linux命令行与shell脚本编程大全 第3版》

第一部分 Linux 命令行 第1章  初识Linux she1.1   什么是Linux 21.1.1 深入探究Linux 内核 31.1.2 GNU 工具 61.1.3 Linux 桌面环境 81.2   Linux 发行版 121.2.1 核心Linux 发行版 131.2.2 特定用途的Linux 发行版 131.2.3 Linux LiveCD 141.3   小结 15 第2章  走进shell2.1   进入命令行 162.1.1 控制台终端 172.1.2 图形化终端 172.2

fedora24恢复终端Shortcuts

fedora24是Gnome 在左上角Edit->Preferences->Shortcuts->里面更改默认的快捷键后 在这个终端里是无法恢复的,压根就没有可以让你恢复的东东. 输入以下命令可以恢复,是立即恢复,无须重启. gsettings reset-recursively org.gnome.Terminal.Legacy.Settings

Linux版MonoDevelop无法连接调试器的解决方案(Could not connet to the debugger)

安装了Linux版本的MonoDevelop之后,在运行程序的时候会提示Could not connnet to the debugger.的错误. 原因是新版本的Gnome Terminal不再接受--disable-factory参数. 解决办法有二: 1. 在命令行里输入: $ unset GNOME_DESKTOP_SESSION_ID $ monodevelop 2. 在项目的Project Options > Run > General里,将Run on external cons