目录
1.bash用户级配置文件~/.bashrc
2.xterm,xft,urxvt配置文件~/.Xresources
3.vim配置文件/etc/vim/vimrc
4.fcitx配置文件~/.fcitx/config
5.mlterm用户级主配置文件~/.mlterm/main
6.mlterm aa字体配置~/.mlterm/aafont
7.mlterm普通字体配置~/.mlterm/font
8.ipager配置文件~/.ipager/ipager.conf
9.opera字体配置/usr/share/opera/defaults/font.ini
10.conky配置文件~/.conkyrc
11.pcmanfm配置文件~/.config/pcmanfm/main
12.openbox主要配置文件~/.config/openbox/rc.xml
13.tint2配置文件~/.config/tint2/tint2rc
14.suder配置文件/etc/sudoers
15.网络配置/etc/network/interfaces
16.在上海和浙江电信线路用的源列表/etc/apt/sources.list
17.上youtoube并关闭ipv6,/etc/hosts
18.vsftpd配置文件/etc/vsftpd.conf
19.fbpanel配置文件~/.fbpanel/default
20.使gedit打开中文文件,~/.gconf/apps/gedit-2/preferences/encodings/%gconf.xml21.canto配置文件~/.canto/conf.py
1.~/.bashrc# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
# don't overwrite GNU Midnight Commander's setting of `ignorespace'.
export HISTCONTROL=$HISTCONTROL${HISTCONTROL+,}ignoredups
# ... or force ignoredups and ignorespace
export HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# make less more friendly for non-text input files, see lesspipe(1)
#[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color) color_prompt=yes;;
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32;49m\]\u\[\033[00m\]@\h:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
#if [ -f ~/.bash_aliases ]; then
# . ~/.bash_aliases
#fi
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
eval "`dircolors -b`"
alias ls='ls --color=auto'
alias grep='grep --color=always'
alias less='less -R'
alias df='df -Th'
alias du='du -h'
alias fdbbs='luit -encoding gbk -- telnet -8 bbs.fudan.sh'
#alias fdbbs='luit -encoding gbk -- telnet bbs.fudan.edu.cn'
alias zhcon='zhcon --utf8'
alias music='/home/stesen/music/playmusic/autoplay.sh'
alias dir='dir --color=auto'
alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
2.~/.Xresources (xterm,xft,urxvt)XTerm*locale: true
xterm*faceName: WenQuanYi Micro Hei Mono:size=9
xterm*faceNameDoublesize: WenQuanYi Micro Hei Mono:size=9
XTerm*color0: black
XTerm*color1: red3
XTerm*color2: green3
XTerm*color3: yellow3
XTerm*color4: DodgerBlue1
XTerm*color5: magenta3
XTerm*color6: cyan3
XTerm*color7: gray90
XTerm*color8: gray50
XTerm*color9: red
XTerm*color10: green
XTerm*color11: yellow
XTerm*color12: blue
XTerm*color13: magenta
XTerm*color14: cyan
XTerm*color15: white
XTerm*colorUL: yellow
XTerm*colorBD: white
xterm*background: black
xterm*foreground: Grey
!fix alt key input
xterm*eightBitInput: false
xterm*altSendsEscape: true
!look and feel
xterm.termName: xterm-256color
xterm.geometry: 80x24
xterm*scrollBar: false
xterm*rightScrollBar: true
xterm*loginshell: true
xterm*cursorBlink: true
xterm.borderLess: true
xterm.cursorBlink: true
xterm*cjkWidth:false
Xft.antialias: true
Xft.hinting: true
Xft.hintstyle: hintfull
Xft.lcdfilter: lcddefault
Xft.rgba: rgb
URxvt*font:xft:WenQuanYi Micro Hei Mono:size=9
urxvt*background: rgba:0000/0000/0000/dddd
!urxvt*background: black
URxvt*foreground: grey
URxvt*scrollBar: false
URxvt*borderless: false
URxvt.cursorBlink: True
URxvt.cursorUnderline: True
URxvt*geometry: 84x24
URxvt*tintColor: grey
URxvt*fading: 0
URxvt*fadeColor: black
URxvt*shading: 0
URxvt*shadeColor: black
!URxvt*inheritPixmap: true
URxvt*pointerColor: black
URxvt*pointerColor2: white
URxvt*depth: 32
URxvt*transparent: false
URxvt.transparency:100
URxvt*color0: black
URxvt*color1: red3
URxvt*color2: green3
URxvt*color3: yellow3
URxvt*color4: DodgerBlue1
URxvt*color5: magenta3
URxvt*color6: cyan3
URxvt*color7: gray90
URxvt*color8: gray50
URxvt*color9: red
URxvt*color10: green
URxvt*color11: yellow
URxvt*color12: blue
URxvt*color13: magenta
URxvt*color14: cyan
URxvt*color15: white
URxvt.urlLauncher:iceweasel
URxvt.perl-ext-common: default,matcher,selection-pastebin,-selection-popup,-option-popup
URxvt.matcher.button: 1
URxvt.keysym.C-Delete: perl:matcher
URxvt.keysym.C-M-p: perl:selection-pastebin:remote-pastebin
URxvt.selection-pastebin.cmd: firefox `cat "%" | nopaste`
URxvt.saveLines:3000
3./etc/vim/vimrc" All system-wide defaults are set in $VIMRUNTIME/debian.vim (usually just
" /usr/share/vim/vimcurrent/debian.vim) and sourced by the call to :runtime
" you can find below. If you wish to change any of those settings, you should
" do it in this file (/etc/vim/vimrc), since debian.vim will be overwritten
" everytime an upgrade of the vim packages is performed. It is recommended to
" make changes after sourcing debian.vim since it alters the value of the
" 'compatible' option.
" This line should not be removed as it ensures that various options are
" properly set to work with the Vim-related packages available in Debian.
runtime! debian.vim
" Uncomment the next line to make Vim more Vi-compatible
" NOTE: debian.vim sets 'nocompatible'. Setting 'compatible' changes numerous
" options, so any other options should be set AFTER setting 'compatible'.
"set compatible
" Vim5 and later versions support syntax highlighting. Uncommenting the next
" line enables syntax highlighting by default.
syntax on
" If using a dark background within the editing area and syntax highlighting
" turn on this option as well
"set background=dark
" Uncomment the following to have Vim jump to the last position when
" reopening a file
"if has("autocmd")
" au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
"endif
" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
"if has("autocmd")
" filetype plugin indent on
"endif
" The following are commented out as they cause vim to behave a lot
" differently from regular Vi. They are highly recommended though.
"set showcmd " Show (partial) command in status line.
"set showmatch " Show matching brackets.
"set ignorecase " Do case insensitive matching
"set smartcase " Do smart case matching
"set incsearch " Incremental search
"set autowrite " Automatically save before commands like :next and :make
"set hidden " Hide buffers when they are abandoned
"set mouse=a " Enable mouse usage (all modes)
" Source a global configuration file if available
if filereadable("/etc/vim/vimrc.local")
source /etc/vim/vimrc.local
endif
set autoindent
set tabstop=4
set shiftwidth=4
set fileencodings=utf-8,gb2312,gbk,gb18030
set termencoding=utf-8
set encoding=prc
set hlsearch
4.~/.fcitx/config[程序]
显示字体(中)=WenQuanYi Micro Hei
显示字体(英)=Courier New
显示字体大小=8
主窗口字体大小=8
字体区域=zh_CN.UTF-8
是否使用AA字体=1
是否使用粗体=0
[输出]
数字后跟半角符号=1
Enter键行为=2
分号键行为=2
大写字母输入英文=1
转换英文中的标点=1
联想方式禁止翻页=1
[界面]
候选词个数=9
主窗口是否使用3D界面=0
输入条使用3D界面=0
主窗口隐藏模式=1
显示虚拟键盘=0
是否自动隐藏输入条=1
输入条是否居中=1
首次显示输入条=1
#输入条固定宽度(仅适用于码表输入法),0表示不固定宽度
输入条固定宽度=0
输入条偏移量X=0
输入条偏移量Y=12
序号后加点=0
显示打字速度=0
显示版本=0
光标色=255 255 255
主窗口背景色=46 46 46
主窗口线条色=46 46 46
主窗口输入法名称色=255 255 255 255 255 255 255 255 255
输入窗背景色=46 46 46
输入窗提示色=255 255 255
输入窗用户输入色=255 255 255
输入窗序号色=250 255 255
输入窗第一个候选字色=255 255 255
#该颜色值只用于拼音中的用户自造词
输入窗用户词组色=255 255 255
输入窗提示编码色=255 255 255
#五笔、拼音的单字/系统词组均使用该颜色
输入窗其它文本色=255 255 255
输入窗线条色=46 46 46
输入窗箭头色=255 255 255
虚拟键盘窗背景色=220 220 220
虚拟键盘窗字母色=0 0 0
虚拟键盘窗符号色=0 0 0
#除了“中英文快速切换键”外,其它的热键均可设置为两个,中间用空格分隔
[热键]
打开/关闭输入法=CTRL_SPACE
#中英文快速切换键 可以设置为L_CTRL R_CTRL L_SHIFT R_SHIFT
中英文快速切换键=L_CTRL
双击中英文切换=0
击键时间间隔=250
光标跟随=CTRL_K
GBK支持=CTRL_M
GBK繁体切换键=CTRL_ALT_F
联想支持=CTRL_L
反查拼音=CTRL_ALT_E
全半角=SHIFT_SPACE
中文标点=ALT_SPACE
上一页=- ,
下一页== .
第二三候选词选择键=SHIFT
[输入法]
使用拼音=1
使用双拼=1
默认双拼方案=自然码
使用区位=0
使用码表=0
提示词库中的词组=1
[拼音]
使用全拼=1
拼音自动组词=1
保存自动组词=1
增加拼音常用字=CTRL_8
删除拼音常用字=CTRL_7
删除拼音用户词组=CTRL_DELETE
#拼音以词定字键,等号后面紧接键,不要有空格
拼音以词定字键=[]
#重码调整方式说明:0-->不调整 1-->快速调整 2-->按频率调整
拼音单字重码调整方式=2
拼音词组重码调整方式=1
拼音常用词重码调整方式=0
是否模糊an和ang=0
是否模糊en和eng=2
是否模糊ian和iang=0
是否模糊in和ing=2
是否模糊ou和u=0
是否模糊uan和uang=0
是否模糊c和ch=0
是否模糊f和h=0
是否模糊l和n=0
是否模糊s和sh=0
是否模糊z和zh=0
5.~/.mlterm/mainfg_color = lightgray
use_transbg = false
wall_picture =
fontsize = 15
screen_width_ratio = 90
bel_mode = none
scrollbar_mode = none
brightness = 100
contrast = 100
gamma = 100
fade_ratio = 100
use_anti_alias = false
use_variable_column_width = true
line_space = 0
bg_color = black
6.~/.mlterm/aafontISO8859_1=smoothansi-iso10646-1;
ISO10646_UCS4_1=smoothansi-iso10646-1;
BIG5=WenQuanYi Zen Hei Mono-iso10646-1;
GB2312_80=WenQuanYi Zen Hei Mono-iso10646-1;
GBK=WenQuanYi Zen Hei Mono-iso10646-1;
ISO10646_UCS4_1_BIWIDTH=WenQuanYi Zen Hei Mono-iso10646-1;
7.~/.mlterm/fontISO8859_1=13,smoothansi;
ISO10646_UCS4_1=13,smoothansi;
GB2312_80=12,-aliasmisc-ar pl uming cn-light-r-normal--12-*-0-0-p-*-gb2312.1980-*;
GBK=12,-aliasmisc-ar pl uming cn-light-r-normal--12-*-0-0-p-*-iso10646-*;
BIG5=12,-aliasmisc-ar pl uming cn-light-r-normal--12-*-0-0-p-*-big5-*;
8.~/.ipager/ipager.conficon.spacing: 4
icon.min_width: 20
icon.max_width: 26
icon.min_height: 20
icon.max_height: 26
icon.maximize_threshold: 0.9
#
# IPager window position
#
ipager.window.x: 10
ipager.window.y: 773
# should IPager starts in slit?
ipager.in_slit: no
#
#
display_sticky_windows: yes
display_shaded_windows: yes
# [ yes | no | mouseOver ]
display_window_icon: no
#
# Button to switch workspaces
#
#
# [ left | right | middle | any ]
# or
# set of buttons like:
# left, right
# middle, right
#
switch_workspace.button: any
#
mouse.scroll.up: nextWorkspace
mouse.scroll.down: prevWorkspace
#
# Delta (in pixels)
#
# when an workspace icon changes its size
# IPager compare new values and previous.
# If they differ less then 'zoom.recreate_icon_delta' then
# IPager continues to use an old icon and just zoom it.
# If the sizes differ more 'zoom.recreate_icon_delta's value,
# then IPager creates a new icon picture.
# it is not very efficient to create icons often.
#
zoom.recreate_icon_delta: 0
# Defines style of zooming icons. Should an icon spacing be expandig or
# an active workspace icon lays over other (cross them)?
#
# [zoomAndExpand | over]
#
zoom.type: over
display_workspace_number: no
workspace_number.color: #000000
ttf_font_path: /usr/share/fonts/truetype
ttf_font: Bitstream Vera Sans/9
#
# Background image for IPager window
#
#ipager.background.image: /path/to/image.png
#
# Colors (#RRGGBB)
#
ipager.background.color:
ipager.border.color: #262729
workspace.background.color:
workspace.border.color: #262729
active_workspace.background.color: #262729
active_workspace.border.color:
window.background.color: #D0D0D0
window.border.color: #000000
active_window.background.color: #0077ff
active_window.border.color: #0077ff
selection_color: #FF0000
9./usr/share/opera/defaults/font.iniOpera Preferences version 2.1
; Do not edit this file while Opera is running
; This file is stored in UTF-8 encoding
[matches]
; One can disable xft or core fonts if necessary
;engine:xft=blacklist
engine:x11=blacklist
; Foundries that are generally known to have bad implementations
;foundry:urw|abiword|ultimo=bad
; Generic settings - families with known glyph types
family:times|nimbus roman no9 l|times new roman|bitstream vera serif=serif
family:helvetica|nimbus sans l|arial|bitstream vera sans=sans-serif
family:courier|courier new|bitstream vera sans mono=monospace
; Generic settings - generic families which have good, readable designs,
; but where we can't be sure the implementation is any good.
family:times|times new roman=good
family:helvetica|arial=good
family:courier|courier new=good
family:clearlyu *=good
; Known high-quality fonts
family:arial|verdana|times new roman;foundry:microsoft|monotype=excellent
family:Nimbus*=verygood
foundry:bitstream=excellent
; Known fonts that solves specific problems
;family:mincho|gothic=japanese good try-first
family:锟????锞帮骏锞????锟わ窘锞??Simsun|锟????锞癸喀锞??荆锟ワ井锞??郡锞斤??|FZSongTi=chinese-s excellent try-first
family:WenQuanYi Bitmap Song=chinese-s verygood try-first
family:AR PL UMing*|锟????锞??咯锞硷??pl锟э净锞??郡锞革??锟??镜锞凤骏锞????uni=chinese-s good try-first
;family:song|song ti|fangsong*=chinese-s try-first
;family:baekmuk*=korean good try-first
; Fonts that we know should not be used for displaying text
family:*dingbat*|*dings*|agathadaimon=symbol
; Specific fonts at the bottom
; Known bad implementations
engine:x11;foundry:mdk;family:helvetica=blacklist
[default]
usage=by-request
preference=5
[serif]
style=serif
[sans-serif]
style=sans-serif
[monospace]
10.~/.conkyrcbackground yes
cpu_avg_samples 2
net_avg_samples 2
out_to_console no
font -adobe-helvetica-*-r-normal--10-*-*-*-*-*-*-*
use_xft yes
xftfont Bitstream Vera Sans:size=7
own_window_transparent no
own_window_colour black
xftalpha 0.8
update_interval 1
own_window no
double_buffer yes
minimum_size 5 5
maximum_width 280
draw_shades no
draw_outline no
draw_borders no
stippled_borders 1
border_margin 5
border_width 1
draw_graph_borders no
default_color lightgrey
default_shade_color black
default_outline_color grey
color0 FFFFFF
color1 F5F5F5
color2 A2AEC6
color3 696969
color4 D3D3D3
color5 6495ED
color6 87CEFA
color7 5F9EA0
color8 BBBBBB
color9 f8ea5e
alignment top_right
gap_x 10
gap_y 10
use_spacer yes
no_buffers yes
uppercase no
background yes
TEXT
${hr 2}
${offset 60}${font OpenLogos:size=18}${color red}J$font${voffset -15}${font Impact:size=11}${color dee01e} Debian GNU/Linux${font } sid
${voffset 1}$color${hr 2}
${color 93ee12}${font sans-serif:size=8}kernel:$font$alignr${color} $kernel
${color 93ee12}${font sans-serif:size=8}Uptime:$font$alignr${color} $uptime
${font sans-serif:size=8}${color 93ee12}CpuInfo:${font Bitstream Vera Sans:size=6}${color}$alignr${exec cat /proc/cpuinfo | grep "model name" -m1 | cut -d":" -f2 | cut -d" " -f2-| sed 's#Processor ##'|sed 's/CPU/ /g'|sed 's/@/ /g'|sed 's/ \{2,\}/ /g'}$font
$color$stippled_hr
${color 93ee12}${font sans-serif:size=8}IP Address:$font${color}
${offset 20}eth0 IP : ${addr eth0}
${offset 20}wlan0 IP : ${addr wlan0}
${font sans-serif:size=8}${color 93ee12}Acpi-Temp:${offset 30}HDD-Temp:${offset 30}Frequency :$font
${color}${exec sensors| tail -2 |head -1|cut -d" " -f8|cut -d"+" -f2} ${exec echo 998755 | sudo -S hddtemp /dev/sda |cut -d":" -f3 | cut -d" " -f2} $freq MHz
$color$stippled_hr
${font sans-serif:size=8}${color 93ee12}CPU Usage:$font ${color}Total: $cpu%${alignr}cpu0: ${cpu cpu0}% cpu1: ${cpu cpu1}%
${color}${cpugraph cpu0 20,135 262729 87CEFA}${offset 10}${cpugraph cpu1 20,135 262729 87CEFA}
${offset 2}${color 93ee12}${font sans-serif:size=8}Disk IO:$font ${color}Total $diskio${alignr}Read: ${diskio_read}Write: $diskio_write
${color}${diskiograph_read 20,135 262729 87CEFA}${offset 10}${diskiograph_write 20,135 262729 87CEFA}
${color 93ee12}${font sans-serif:size=8}RAM Usage:$font${color}${alignr}$mem/$memmax
${membar 3}$color
${color 93ee12}${font sans-serif:size=8}Battery:$font$alignr${color}${battery_time} left--${battery_percent}%
${battery_bar 3}
${color 93ee12}${font sans-serif:size=8}File Systems:$font
${offset 10}${color 87CEFA}/boot: ${color 87CEFA}${fs_used /boot}/${fs_size /boot} ${color}$alignr${fs_bar 3,135 /boot}$font
${offset 10}${color 87CEFA}/ : ${color 87CEFA}${fs_used /}/${fs_size /} ${color}$alignr${fs_bar 3,135 /}$font
$color$stippled_hr
${color 93ee12}${font sans-serif:size=8}Networking:$font${color}
${offset 4}${color 87CEFA}Marvell 88E8039 PCI-E Fast Ethernet Controller:${color }
${offset 10}${font PizzaDude Bullets:size=8}r${font}Down: ${downspeed eth0}
${offset 10}${font PizzaDude Bullets:size=8}U${font}Total Down: ${totaldown eth0}${voffset -10}$alignr${voffset -5}$color${downspeedgraph eth0 20,130 262729 87CEFA}
${color }${offset 10}${font PizzaDude Bullets:size=8}r${font}Up : ${upspeed eth0}
${offset 10}${font PizzaDude Bullets:size=8}U${font}Total Up : ${totalup eth0}${voffset -10}$alignr${voffset -5}$color${upspeedgraph eth0 20,130 262729 87CEFA}
${offset 4}${color 87CEFA}Intel PRO/Wireless 3945ABG Network Connection:${color }
${offset 10}${font PizzaDude Bullets:size=8}r${font}Down: ${downspeed wlan0}
${offset 10}${font PizzaDude Bullets:size=8}U${font}Total Down: ${totaldown wlan0}${voffset -10}$alignr${voffset -5}$color${downspeedgraph wlan0 20,130 262729 87CEFA}
${color }${offset 10}${font PizzaDude Bullets:size=8}r${font}Up : ${upspeed wlan0}
${offset 10}${font PizzaDude Bullets:size=8}U${font}Total Up : ${totalup wlan0}${voffset -10}$alignr${voffset -5}${color}${upspeedgraph wlan0 20,130 262729 87CEFA}
$color $stippled_hr
${color 93ee12} ${font sans-serif:size=8}Name $alignr PID CPU% MEM%$font
${color #FF0000} ${top name 1} $alignr${top pid 1} ${top cpu 1} ${top mem 1}
${color orange} ${top name 2} $alignr${top pid 2} ${top cpu 2} ${top mem 2}
${color yellow} ${top name 3} $alignr${top pid 3} ${top cpu 3} ${top mem 3}
${color #0077FF} ${top name 4} $alignr${top pid 4} ${top cpu 4} ${top mem 4}
${color} ${top name 5} $alignr${top pid 5} ${top cpu 5} ${top mem 5}
${offset 45}${font Ani:size=20}${color gray}${time %Y-%m-%d}
${offset 200}${voffset -20}${font Ani:size=12}${color gray}${time %r}
11.~/.config/pcmanfm/main[General]
max_thumb_size=2048
big_icon_size=36
small_icon_size=16
terminal=xterm
[Window]
width=1043
height=661
splitter_pos=160
maximized=0
[Desktop]
show_wallpaper=1
wallpaper=/home/stesen/pic/Misty Trees-0.1-0.jpg
show_wm_menu=1
bg2=0,0,4384
[Interface]
12.~/.config/openbox/rc.xml
10
20
yes
no
yes
no
200
no
Smart
yes
Any
Curdled
NLIMC
no
yes
WenQuanYi Micro Hei Mono
5
Normal
Normal
WenQuanYi Micro Hei Mono
5
Normal
Normal
WenQuanYi Micro Hei Mono
8
Normal
Normal
WenQuanYi Micro Hei Mono
8
Normal
Normal
Bitstream Vera Sans Mono
8
Normal
Normal
4
1
1
2
3
4
600
yes
NonPixel
Center
-5
-5
0
22
0
0
TopLeft
0
0
no
Above
Vertical
no
300
300
Middle
C-g
no
no
no
no
no
no
no
no
1
2
3
4
gnome-screenshot
gnome-screenshot -w
yes
yes
true
pcmanfm
pcmanfm
true
xterm
xterm
true
iceweasel
iceweasel
8
200
400
top
left
right
bottom
no
no
no
yes
5
0
below
all
yes
yes
13.~/.config/tint2/tint2rc#---------------------------------------------
# TINT2 CONFIG FILE
#---------------------------------------------
#---------------------------------------------
# BACKGROUND AND BORDER
#---------------------------------------------
rounded = 7
border_width = 2
background_color = #000000 60
border_color = #ffffff 18
rounded = 5
border_width = 0
background_color = #ffffff 40
border_color = #ffffff 50
rounded = 5
border_width = 0
background_color = #ffffff 18
border_color = #ffffff 70
#---------------------------------------------
# PANEL
#---------------------------------------------
panel_monitor = all
panel_position = bottom right
panel_size = 90% 28
panel_margin = 0 0
panel_padding = 7 0
font_shadow = 0
panel_background_id = 1
wm_menu = 1
#---------------------------------------------
# TASKBAR
#---------------------------------------------
#taskbar_mode = multi_desktop
taskbar_mode = single_desktop
taskbar_padding = 2 3 2
taskbar_background_id = 0
#---------------------------------------------
# TASKS
#---------------------------------------------
task_icon = 1
task_text = 1
task_width = 160
task_centered = 1
task_padding = 6 3
task_font = WenQuanYi Micro Hei Mono 8
task_font_color = #ffffff 70
task_active_font_color = #ffffff 85
task_background_id = 3
task_active_background_id = 2
#---------------------------------------------
# SYSTRAYBAR
#---------------------------------------------
systray_padding = 0 4 5
systray_background_id = 0
#---------------------------------------------
# CLOCK
#---------------------------------------------
time1_format = %H:%M
time1_font = sans 8
#time2_format = %a %d %b
time2_format = %F %A
time2_font = sans 6
clock_font_color = #FFFFFF 76
clock_padding = 1 0
clock_background_id = 0
clock_lclick_command = orage
clock_rclick_command = xterm
#---------------------------------------------
# BATTERY
#---------------------------------------------
battery = 0
battery_low_status = 10
battery_low_cmd = notify-send "battery low"
bat1_font = sans 8
bat2_font = sans 6
battery_font_color = #ffffff 76
battery_padding = 1 0
battery_background_id = 0
#---------------------------------------------
# MOUSE ACTION ON TASK
#---------------------------------------------
mouse_middle = close
mouse_right = toggle_iconify
mouse_scroll_up = toggle
mouse_scroll_down = iconify
14./etc/sudoers# /etc/sudoers
#
# This file MUST be edited with the 'visudo' command as root.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
# Host alias specification
# User alias specification
# Cmnd alias specification
# User privilege specification
root ALL=(ALL) ALL
%adm ALL=(ALL) ALL
# Uncomment to allow members of group sudo to not need a password
# (Note that later entries override this, so you might need to move
# it further down)
# %sudo ALL=NOPASSWD: ALL
ALL ALL=NOPASSWD:/sbin/poweroff
ALL ALL=NOPASSWD:/sbin/reboot
ALL ALL=NOPASSWD:/usr/sbin/hddtemp
15./etc/network/interfaces# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.1.1
allow-hotplug wlan0
iface wlan0 inet dhcp
16./etc/apt/sources.list#deb sid main non-free contrib
deb sid main non-free contrib
deb-src sid main non-free contrib
deb sid main
deb-src sid main
deb sid main non-free contrib
deb-src sid main non-free contrib
deb lenny non-free
#deb experimental main non-free contrib
#ipager:
deb-src unstable main contrib non-free
#deb experimental main
#deb unstable main
17./etc/hosts127.0.0.1 localhost
127.0.1.1 debian
203.208.39.104
203.208.33.100 gdata.youtube.com
# The following lines are desirable for IPv6 capable hosts
#::1 localhost ip6-localhost ip6-loopback
#fe00::0 ip6-localnet
#ff00::0 ip6-mcastprefix
#ff02::1 ip6-allnodes
#ff02::2 ip6-allrouters
#ff02::3 ip6-allhosts
18./etc/vsftpd.conflisten=YES
anonymous_enable=YES
dirlist_enable=YES
anon_world_readable_only=YES
local_enable=YES
write_enable=YES
anon_upload_enable=YES
anon_mkdir_write_enable=YES
anon_other_write_enable=YES
anon_umask=133
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
chroot_local_user=YES
secure_chroot_dir=/var/run/vsftpd
pam_service_name=vsftpd
rsa_cert_file=/etc/ssl/certs/vsftpd.pem
anon_root=/home/ftp
max_clients=3
max_per_ip=2
19.~/.fbpanel/defaultGlobal {
edge = bottom
allign = center
margin = 0
widthtype = percent
width = 90
height = 20
transparent = true
tintcolor = #000000
alpha = 10
setdocktype = true
setpartialstrut = true
autohide = false
heightWhenHidden = 2
setdocktype = true
setpartialstrut = true
}
Plugin {
type = taskbar
expand = true
config {
ShowIconified = true
ShowMapped = true
ShowAllDesks = false
tooltips = true
IconsOnly = false
MaxTaskWidth = 150
AcceptSkipPager = false
spacing = 0
}
}
Plugin {
type = pager
config {
showwallpaper = false
}
}
Plugin {
type = tray
}
20.~/.gconf/apps/gedit-2/preferences/encodings/%gconf.xml
GB2312
GBK
GB18030
UTF-8
CURRENT
ISO-8859-15
UTF-16
GB2312
UTF-8
GB18030
GBK
ISO-8859-15
21.~/.canto/conf.pylink_handler("w3m \"%u\"", text=True)
image_handler("feh \"%u\"", fetch=True)
link_handler("mplayer -someoptions \"%u\"", ext="mp3")
link_handler("evince \"%u\"", ext="pdf", fetch=True)
add("")
add("")
add("")
add("")
add("http://blog.chinaunix.net/u/rss.php?id=96229")
add("http://blog.chinaunix.net/u/rss.php?id=13265")
add("")