rxvt 美化

rxvt-unicode 应该是支持unicode的xterm,想以后可能会用到,先把这篇文章转下来:
http://www.leninlee.cn/?p=316

   rxvt是个快速且节省内存的模拟终端,原版rxvt对中文等非字母语言的支持不好,所以它有许多修改版,rxvt-unicode-ml是比较适合中国人使用的rxvt修改版。

     rxvt轻量但不简单,它有许多设置选项和启动参数,用户可以在命令行使用“rxvt -help”查看其常用启动参数,使用“rxvt –help”查看更为详细的启动参数。

     通过修改用户主目录下的“.Xresources”文件可以配置urxvt的行为,从而不必每次都加启动参数,我的”.Xresources“文件内容如下:

Rxvt.background:white
Rxvt.foreground:black
Rxvt.colorBD:yellow
Rxvt.colorUL:green
Rxvt.multichar_encoding:gb2312
Rxvt.scrollBar:Fault
Rxvt.scrollBar_right:True
Rxvt.scrollBar_floating: True
Rxvt.scrollstyle: next
Rxvt.saveLines:10000
Rxvt.color0:black
Rxvt.color1:red3
Rxvt.color2:springgreen
Rxvt.color3:wheat3
Rxvt.color4:navy
Rxvt.color5:magenta4
Rxvt.color6:steelblue1
Rxvt.color7:gray85
Rxvt.color8:gray10
Rxvt.color9:SkyBlue3
Rxvt.color10:chartreuse3
Rxvt.color11:lightgoldenrod2
Rxvt.color12:SkyBlue1
Rxvt.color13:pink1
Rxvt.color14:lightblue1
Rxvt.color15:#dbeff9
Rxvt.font:xft:Vera Sans YuanTi Mono :size=10,xft:Monospace:size=10
Rxvt.menu:/etc/X11/rxvt.menu
Rxvt.preeditType:Root
Rxvt.geometry:192×174
Rxvt.transparency:255

     这个配置文件是白底黑字,当然可以修改为全透明或者半透明,不过,只要在启动时加入启动参数就可以实现全透明:

urxvt -tr

     也可以实现半透明:

urxvt -fg lightgray -bg black -bc -tr -tint lightgray -sh 60 -sr

This entry was posted in GNU/Linux and tagged . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *