dotfiles

dot files in ~
git clone git://git.unixkoans.com/dotfiles.git
Log | Files | Refs

commit 921875c64829e51ac54a6dc1c33ed5194703e178
parent 2bdf55e80adcb342e4237bbd665607dc01043d3e
Author: Xiaodong Xu <[email protected]>
Date:   Sat Jul  7 15:42:49 +0800

Update configs

Diffstat:
.Xdefaults | 7+++----
.Xdefaults.d/colors/ypnose | 46++++++++++++++++++++++++++++++++++++++++++++++
.fehbg | 2+-
.fonts.conf | 6+++++-
.gtkrc.mine | 6+++---
.mutt/muttrc | 8++++----
.tmux.conf | 20+++++---------------
.xinitrc | 20++++++++++----------
.zshrc | 6+++---
9 files changed, 80 insertions(+), 41 deletions(-)
diff --git a/.Xdefaults b/.Xdefaults @@ -1,11 +1,11 @@ ! ! author : Xu Xiaodong <[email protected]> -! modified : 2012 Jun 30 +! modified : 2012 Jul 07 ! !-- colorscheme & font --! -# include ".Xdefaults.d/colors/lich" -# include ".Xdefaults.d/fonts/envycoder_droid" +#include ".Xdefaults.d/colors/lich" +#include ".Xdefaults.d/fonts/envycoder_droid" !-- xft --! ! hintstyle : hintnone | hintslight | hintmedium | hintfull @@ -30,7 +30,6 @@ URxvt.preeditType : Root URxvt.saveLines : 65535 !-- urxvt look --! -!URxvt.cursorColor : #af8700 URxvt.cursorColor : #b89f63 URxvt.transparent : false URxvt.cursorBlink : false diff --git a/.Xdefaults.d/colors/ypnose b/.Xdefaults.d/colors/ypnose @@ -0,0 +1,46 @@ +! file: ~/.Xresources +! author: Ypnose - http://tetedulinuxien.fr + +! Colours ---------------------------------- + +!*background: #14161b +!*background: #1a1c20 +*background: #1c2027 +!*foreground: #a7b9dc +!*foreground: #b5c2dc +*foreground: #b2cae3 + +!------------------------------------------- + +! colorx: Normal +! colory: Various / High intensity + +! Black +*color0: #1c2027 +*color8: #666666 +! Red +*color1: #ea6a82 +*color9: #d2548f +! Green +*color2: #4a9b6c +*color10: #6f9f09 +! Yellow +*color3: #edc56f +*color11: #dc8a48 +! Blue +*color4: #3e7ef3 +*color12: #0387db +! Magenta +*color5: #7c4f9f +*color13: #7e62b3 +! Cyan +*color6: #30a8e0 +*color14: #2dbfa9 +! White +*color7: #8998a1 +*color15: #c0c0c0 + +! URxvt ------------------------------------ + +URxvt*cursorColor: #073642 +URxvt*cursorColor2: #edb36f diff --git a/.fehbg b/.fehbg @@ -1 +1 @@ -feh --no-xinerama --bg-scale '/home/xiaodong/pic/cat.jpg' +feh --bg-tile '/home/xiaodong/pic/wall.png' diff --git a/.fonts.conf b/.fonts.conf @@ -5,7 +5,7 @@ <!-- author : Xu Xiaodong <[email protected]> -modified : 2012 Jun 03 +modified : 2012 Jul 07 --> @@ -55,6 +55,10 @@ modified : 2012 Jun 03 <const>lcdlight</const> </edit> + <edit mode="assign" name="embeddedbitmap"> + <bool>false</bool> + </edit> + </match> <match> diff --git a/.gtkrc.mine b/.gtkrc.mine @@ -1,6 +1,6 @@ # # author: Xu Xiaodong <[email protected]> -# modified: 2012 Jun 24 +# modified: 2012 Jul 07 # #-- xft --# @@ -16,9 +16,9 @@ include "/home/xiaodong/.themes/Dyne/gtk-2.0/gtkrc" gtk-icon-theme-name = "gnome-dust" #-- font --# -gtk-font-name = "Droid Sans 8" +gtk-font-name = "Aller 8" style "user-font" { - font_name = "Droid Sans 8" + font_name = "Aller 8" } widget_class "*" style "user-font" diff --git a/.mutt/muttrc b/.mutt/muttrc @@ -1,6 +1,6 @@ # # author : Xu Xiaodong <[email protected]> -# modified : 2012 Jun 11 +# modified : 2012 Jul 07 # source ~/.gmailrc @@ -21,7 +21,7 @@ set realname = "Xu Xiaodong" set folder = "imaps://imap.gmail.com:993" set spoolfile = "+INBOX" mailboxes = "+INBOX" -set record = "+[Gmail]/Sent Mail" +set record = "" set postponed = "+[Gmail]/Drafts" set ssl_starttls = yes @@ -49,9 +49,9 @@ set auto_tag = yes set index_format = "%4C %Z %{%b %d} %-20.20L (%4c) %s" ignore * -unignore Date From To Cc Subject User-Agent Message-ID +unignore Date From To Cc Subject User-Agent -hdr_order Date From To Cc Subject User-Agent Message-ID +hdr_order Date From To Cc Subject User-Agent alternative_order text/plain text/html * auto_view text/html diff --git a/.tmux.conf b/.tmux.conf @@ -1,6 +1,6 @@ # # author : Xu Xiaodong <[email protected]> -# modified : 2012 Jun 24 +# modified : 2012 Jul 01 # #-- base --# @@ -26,10 +26,10 @@ bind j selectp -D bind h selectp -L bind l selectp -R -bind ^k resizep -U 10 -bind ^j resizep -D 10 -bind ^h resizep -L 10 -bind ^l resizep -R 10 +bind -r ^k resizep -U 10 +bind -r ^j resizep -D 10 +bind -r ^h resizep -L 10 +bind -r ^l resizep -R 10 bind ^u swapp -U bind ^d swapp -D @@ -92,13 +92,3 @@ setw -g window-status-current-format '#I:#W#F' set -g message-attr bold set -g message-fg colour223 set -g message-bg colour235 - -#-- apps --# -new -s codefun vim - -neww -n mutt mutt -neww -n irssi irssi -neww -n cmus cmus -neww -n zsh zsh - -selectw -t 5 diff --git a/.xinitrc b/.xinitrc @@ -1,7 +1,7 @@ #!/bin/sh # # author : Xu Xiaodong <[email protected]> -# modified : 2012 Jun 10 +# modified : 2012 Jul 07 # #-- powersave --# @@ -14,15 +14,15 @@ export GTK_IM_MODULE=xim fcitx & #-- app --# -xmodmap ~/.xmodmaprc & # swap Caps_Lock and Control_L -compton -cGb # add fancy shadows -autocutsel & # sync copy/paste buffers -unclutter -idle 5 & # hide mouse cursor -syndaemon -t -k -i 2 -d & # disable trackpad while typing -urxvtd -q -f -o # urxvt daemon -(sleep 2 && bar) & # status bar -eval $(cat ~/.fehbg) # set wallpaper -urxvtc -e tmux att & # start tmux +xmodmap ~/.xmodmaprc & # swap Caps_Lock and Control_L +compton -cGb # add fancy shadows +autocutsel & # sync copy/paste buffers +unclutter -idle 5 & # hide mouse cursor +syndaemon -t -k -i 2 -d & # disable trackpad while typing +urxvtd -q -f -o # urxvt daemon +(sleep 2 && bar) & # status bar +eval $(cat ~/.fehbg) # set wallpaper +urxvtc -e sh -c "tmuxen" & # start tmux #-- wm --# exec dwm diff --git a/.zshrc b/.zshrc @@ -1,6 +1,6 @@ # # author: Xu Xiaodong <[email protected]> -# modified: 2012 Jun 30 +# modified: 2012 Jul 04 # export ZSH=$HOME/code/oh-my-zsh @@ -8,9 +8,9 @@ export ZSH_THEME="codefun" export DISABLE_AUTO_TITLE="true" export DISABLE_AUTO_UPDATE="true" -plugins=(bundler command-coloring gem git github perl ruby rvm) +plugins=(command-coloring gem git github perl ruby rvm) source $ZSH/oh-my-zsh.sh # Load RVM into a shell session *as a function* -[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" +#[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"