|
|
发表于 2008-8-8 17:52:44
|
显示全部楼层
我的 .Xdefaults 文件:
<pre>
URxvt.geometry: 136x45
!URxvt.font: xft:Vera Sans YuanTi Mono:pixelsize=16:style=Bold:encoding=iso10646-1
!URxvt.boldFont: xft:Vera Sans YuanTi Mono:pixelsize=16:encoding=iso10646-1
!URxvt.multichar_encoding: utf-8
URxvt.font: xft:Monaco:pixelsize=16:style=bold:antialias=true:encoding=iso10646-1, \
xft:SimSun:style=bold:antialias=false:encoding=iso10646-1
URxvt.boldFont: xft:Monaco:pixelsize=16:style=bold:antialias=true:encoding=iso10646-1, \
xft:SimSun:style=bold:antialias=false:encoding=iso10646-1
!URxvt.mfont: -misc-fzcusong b09-medium-r-normal-*-*-*-*-*-p-*-iso10646-1
!URxvt.preeditType: Root
URxvt.inputMethod: scim
!URxvt.imLocale: zh_CN.UTF-8
URxvt.imFont: xft:simhei:pixelsize=16:encoding=iso10646-1
URxvt*color0: #000000
URxvt*color1: #b21818
URxvt*color2: #18b218
URxvt*color3: #BE5F00
URxvt*color4: #6D85BA
URxvt*color5: #b218b2
URxvt*color6: #18b2b2
URxvt*color7: #b2b2b2
URxvt*color8: #686868
URxvt*color9: #FF5454
URxvt*color10: #54FF54
URxvt*color11: #FFFF54
URxvt*color12: #73A5FF
URxvt*color13: #FF54FF
URxvt*color14: #54FFFF
URxvt*color15: #FFFFFF
URxvt*background: black
URxvt*foreground: grey
Xcursor.theme: Blue
Xcursor.size: 24
Vim*background: black
!Emacs.font: Monaco-12
Emacs.FontBackend: xft
Xft.dpi: 96
Xft.hinting: None
</pre>
.xinitrc 文件:
<pre>
#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
#
export LANG=zh_CN.UTF-8
export LC_ALL=zh_CN.UTF-8
export XMODIFIERS="@im=SCIM"
export GTK_IM_MODULE=scim
export QT_IM_MODULE=scim
scim -d
setxkbmap -symbols "pc+us+inet(latitude)"
#xmodmap ~/.Xmodmap
xbindkeys
exec startxfce4
#exec startkde
#exec gnome-session
</pre>
locale:
<pre>
LANG=zh_CN.UTF-8
LC_CTYPE="zh_CN.UTF-8"
LC_NUMERIC="zh_CN.UTF-8"
LC_TIME="zh_CN.UTF-8"
LC_COLLATE="zh_CN.UTF-8"
LC_MONETARY="zh_CN.UTF-8"
LC_MESSAGES="zh_CN.UTF-8"
LC_PAPER="zh_CN.UTF-8"
LC_NAME="zh_CN.UTF-8"
LC_ADDRESS="zh_CN.UTF-8"
LC_TELEPHONE="zh_CN.UTF-8"
LC_MEASUREMENT="zh_CN.UTF-8"
LC_IDENTIFICATION="zh_CN.UTF-8"
LC_ALL=zh_CN.UTF-8
</pre> |
|