使用并设置urxvt终端

一般使用系统自带的终端启动较慢,rxvt还是比较好的。

Ubuntu安装rxvt使用命令:

sudo apt-get install rxvt-unicode

安装的unicode版的支持中文比较好。
配置:用vim打开自己home目录下的 .Xresources

vim ~/.Xresources

输入以下内容:其中" ! "表示注释,可以直接粘贴

!!=============================================================================
!! RXVT-unicode setting
!!=============================================================================
!设置字体分辨率
Xft.dpi:96
!设置字体,其中的"14”代表字号大小
URxvt.font:-misc-fixed-medium-r-normal--14-*-*-*-*-*-iso10646-1,xft:WenQuanYi Bitmap Song:size=10 
!颜色
Rxvt.background:black
Rxvt.foreground:white
Rxvt.colorBD:yellow
Rxvt.colorUL:green
!滚动条
Rxvt.scrollBar:True
Rxvt.scrollBar_right:True
Rxvt.scrollBar_floating: False
Rxvt.scrollstyle:plain
!屏幕缓冲
Rxvt.saveLines:10000
Rxvt.color12:DodgerBlue
Rxvt.menu:/etc/X11/rxvt.menu
Rxvt.preeditType:Root
!输入法设置
!inputMethod:xim


你可能感兴趣的:(ubuntu,linux)