dotfiles
changeset 3:4c1ead2dc501
xinitrc and screenrc added; code cleanups
author | meillo@marmaro.de |
---|---|
date | Wed, 25 Apr 2007 20:42:44 +0200 |
parents | ed27560e11be |
children | 68dd6ae11835 |
files | .Xresources .bashrc .dircolorsrc .keymaprc .screenrc .vim/colors/meillo_self.vim .vimrc .xinitrc .xmodmaprc |
diffstat | 9 files changed, 102 insertions(+), 19 deletions(-) [+] |
line diff
1.1 --- a/.Xresources Sat Apr 14 16:11:01 2007 +0200 1.2 +++ b/.Xresources Wed Apr 25 20:42:44 2007 +0200 1.3 @@ -1,5 +1,5 @@ 1.4 -! by markus schnalke <meillo@marmaro.de> 1.5 -! last edited on 2007-02-22 1.6 +! by markus schnalke 1.7 +! http://marmaro.de 1.8 1.9 1.10 1.11 @@ -72,5 +72,5 @@ 1.12 1.13 1.14 1.15 - 1.16 +! to divide urxvt and xterm apart 1.17 xterm*background: #000000
2.1 --- a/.bashrc Sat Apr 14 16:11:01 2007 +0200 2.2 +++ b/.bashrc Wed Apr 25 20:42:44 2007 +0200 2.3 @@ -1,3 +1,9 @@ 2.4 +# markus schnalke -- http://marmaro.de 2.5 +# 2.6 +# modified standard bashrc of debian sarge 2.7 +# 2.8 + 2.9 + 2.10 # ~/.bashrc: executed by bash(1) for non-login shells. 2.11 # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) 2.12 # for examples 2.13 @@ -35,8 +41,8 @@ 2.14 2.15 alias dh='df -h' 2.16 2.17 -alias du1='du -h --max-depth=1 --exclude=".?*" ' 2.18 -alias du2='du -h --max-depth=2 --exclude=".?*" ' 2.19 +alias du1='du -h --max-depth=1 --exclude=".?*" ' # -> shellscript instead of alias 2.20 +alias du2='du -h --max-depth=2 --exclude=".?*" ' # -> shellscript instead of alias 2.21 2.22 alias serveme='ssh meillo@192.168.0.100' 2.23
3.1 --- a/.dircolorsrc Sat Apr 14 16:11:01 2007 +0200 3.2 +++ b/.dircolorsrc Wed Apr 25 20:42:44 2007 +0200 3.3 @@ -1,3 +1,6 @@ 3.4 +# markus schnalke -- http://marmaro.de 3.5 + 3.6 + 3.7 # Configuration file for dircolors, a utility to help you set the 3.8 # LS_COLORS environment variable used by GNU ls with the --color option. 3.9 # The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
4.1 --- a/.keymaprc Sat Apr 14 16:11:01 2007 +0200 4.2 +++ b/.keymaprc Wed Apr 25 20:42:44 2007 +0200 4.3 @@ -1,3 +1,5 @@ 4.4 -# this file is invoked by a shellscript started on init 4.5 +# this file must be invoked by a shellscript on init 4.6 +# it is to modify the keymap for terms without X 4.7 + 4.8 # have the caps lock key as escape 4.9 keycode 58 = Escape
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/.screenrc Wed Apr 25 20:42:44 2007 +0200 5.3 @@ -0,0 +1,48 @@ 5.4 +# markus schnalke -- http://marmaro.de 5.5 +# 5.6 +# my screenrc 5.7 +# 5.8 + 5.9 +startup_message off 5.10 +defscrollback 10000 5.11 +hardstatus alwayslastline "%{KW} %{R}%H%{KW} < %-w%{Wk} %n %t %{-}%+w > %= %Y-%m-%d %c " 5.12 + 5.13 +#termcapinfo xterm|xterms|xs|rxvt|urxvt ti@:te@ 5.14 + 5.15 +# startup programs 5.16 + 5.17 +screen -t ROOT su 5.18 +screen w3m marmaro.de 5.19 +screen -t bash bash 5.20 + 5.21 + 5.22 +# program bindings 5.23 + 5.24 +bind R screen -t ROOT 0 su 5.25 +bind M screen -t cplay 3 cplay -v 5.26 +bind I screen -t icq 4 centericq 5.27 + 5.28 + 5.29 +# control bindings 5.30 + 5.31 +bind l windowlist -b 5.32 +bind - title 5.33 +bind n screen 5.34 +bind o only 5.35 +bind s split 5.36 + 5.37 + 5.38 +# unbind 5.39 + 5.40 +bind \' 5.41 +bind \" 5.42 +bind A 5.43 +bind b 5.44 +bind B 5.45 +bind N 5.46 +bind backspace 5.47 +bind p 5.48 +bind t 5.49 +bind w 5.50 +bind , 5.51 +
6.1 --- a/.vim/colors/meillo_self.vim Sat Apr 14 16:11:01 2007 +0200 6.2 +++ b/.vim/colors/meillo_self.vim Wed Apr 25 20:42:44 2007 +0200 6.3 @@ -1,6 +1,5 @@ 6.4 " Vim color file 6.5 -" Maintainer: markus schnalke <meillo@marmaro.de> 6.6 -" Last Change: 2007-02-22 6.7 +" markus schnalke -- http://marmaro.de 6.8 " 6.9 " This is meillo's own color scheme. 6.10 "
7.1 --- a/.vimrc Sat Apr 14 16:11:01 2007 +0200 7.2 +++ b/.vimrc Wed Apr 25 20:42:44 2007 +0200 7.3 @@ -1,21 +1,17 @@ 7.4 +" markus schnalke -- http://marmaro.de 7.5 +" meillo's vimrc 7.6 + 7.7 + 7.8 set nocompatible 7.9 -"source $VIMRUNTIME/vimrc_example.vim 7.10 -"source $VIMRUNTIME/mswin.vim 7.11 -"behave mswin 7.12 -" 7.13 7.14 7.15 -"set columns=150 lines=50 7.16 -"maximiert starten 7.17 -"au GUIEnter * simalt ~x 7.18 7.19 -"set guifont=Courier_New:h8:cANSI 7.20 set guifont=Terminus\ 9 7.21 7.22 "Scrollbar bottom 7.23 set guioptions+=b 7.24 7.25 -"Cursorblinken abstellen 7.26 +"no cursor blinking 7.27 set guicursor+=a:blinkon0 7.28 7.29 7.30 @@ -69,6 +65,5 @@ 7.31 7.32 set path=.,~/Prog 7.33 7.34 -"cd z:/maka/eis 7.35 7.36 colorscheme meillo_self
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 8.2 +++ b/.xinitrc Wed Apr 25 20:42:44 2007 +0200 8.3 @@ -0,0 +1,26 @@ 8.4 +# markus schnalke -- http://marmaro.de 8.5 + 8.6 + 8.7 +# turn off beeps (dont know if this really works) 8.8 +xset -b 8.9 + 8.10 +# set multimedia keys and CAPS_LOCK as ESC 8.11 +/usr/bin/xmodmap $HOME/.xmodmaprc 8.12 + 8.13 + 8.14 +# set wallpaper 8.15 +#eval `cat $HOME/.fehbg` 8.16 +feh --bg-scale $HOME/.kiwi-tour.jpg 8.17 + 8.18 + 8.19 +# start apps 8.20 +firefox & 8.21 +urxvt -e ssh meillo@serveme & 8.22 +urxvt -e screen -R & 8.23 + 8.24 + 8.25 +# start the window manager 8.26 +while true ; do 8.27 + echo `date +"%F %H:%M"` 8.28 + sleep 2 8.29 +done | /home/meillo/dwm
9.1 --- a/.xmodmaprc Sat Apr 14 16:11:01 2007 +0200 9.2 +++ b/.xmodmaprc Wed Apr 25 20:42:44 2007 +0200 9.3 @@ -1,9 +1,13 @@ 9.4 +! markus schnalke -- http://marmaro.de 9.5 +! modifies the keymap for the X-server 9.6 + 9.7 + 9.8 ! have CAPS_LOCK as second ESC 9.9 remove Lock = Caps_Lock 9.10 keysym Caps_Lock = Escape 9.11 9.12 9.13 -! to enable my multimedia keys 9.14 +! enable my multimedia keys 9.15 keycode 144 = F30 9.16 keycode 153 = F31 9.17 keycode 162 = F32