自定义终端

自定义终端

我正在使用 Elementary OS(基于 Ubuntu 12.04),我想更改 Pantheon 终端窗口的配色方案。

这是我尝试过的-

  1. 基本调整
  2. Dconf 编辑器
  3. shell 命令

它们都没能完成工作。我很难区分命令提示符和其他文本。

这就是我想要使用的

https://github.com/Mayccoll/Elementary-OS-Terminal-Colors

答案1

通过 Tweaks/Dconf 自定义终端颜色会全局更改所有终端应用程序的颜色。例如,mc预装的终端主题完全无法使用(至少对我来说)。

对于我来说,区分命令提示符和其他文本极其困难。

在这种情况下,你应该查看你的~/.bashrc文件并尝试取消注释 force_color_prompt=yes。重新启动终端后,这将给出彩色提示。

更改 bash 提示符的颜色和其他属性,只需在以下内容中编辑.bashrc

PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\] \$ '

http://www.cyberciti.biz/faq/bash-shell-change-the-color-of-my-shell-prompt-under-linux-or-unix/ http://www.cyberciti.biz/tips/howto-linux-unix-bash-shell-setup-prompt.html

答案2

您也可以尝试以下指南梅科尔,下载并安装完整脚本。

首先取消注释以下行.bashrc

 #force_color_prompt=yes

然后安装样式:

$ wget https://raw.githubusercontent.com/Mayccoll/Elementary-OS-Terminal-Colors/master/elementary.sh
$ chmod +x elementary.sh
$ ./elementary.sh

代替基本文件采用 Mayccoll 的 Git 中提供的风格。

另一种方法是打开您想要安装的样式并通过 dconf 手动导入值:

组织->侏儒->万神殿->终端->设置

值包括:

background_color - background
foreground_color - foreground
palette - palette

相关内容