# HG changeset patch # User meillo@marmaro.de # Date 1177526564 -7200 # Node ID 4c1ead2dc501e2fed47d1438cd2c56a1721dc61e # Parent ed27560e11be2fb22b79d5abb3e59c10a105ba94 xinitrc and screenrc added; code cleanups diff -r ed27560e11be -r 4c1ead2dc501 .Xresources --- a/.Xresources Sat Apr 14 16:11:01 2007 +0200 +++ b/.Xresources Wed Apr 25 20:42:44 2007 +0200 @@ -1,5 +1,5 @@ -! by markus schnalke -! last edited on 2007-02-22 +! by markus schnalke +! http://marmaro.de @@ -72,5 +72,5 @@ - +! to divide urxvt and xterm apart xterm*background: #000000 diff -r ed27560e11be -r 4c1ead2dc501 .bashrc --- a/.bashrc Sat Apr 14 16:11:01 2007 +0200 +++ b/.bashrc Wed Apr 25 20:42:44 2007 +0200 @@ -1,3 +1,9 @@ +# markus schnalke -- http://marmaro.de +# +# modified standard bashrc of debian sarge +# + + # ~/.bashrc: executed by bash(1) for non-login shells. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # for examples @@ -35,8 +41,8 @@ alias dh='df -h' -alias du1='du -h --max-depth=1 --exclude=".?*" ' -alias du2='du -h --max-depth=2 --exclude=".?*" ' +alias du1='du -h --max-depth=1 --exclude=".?*" ' # -> shellscript instead of alias +alias du2='du -h --max-depth=2 --exclude=".?*" ' # -> shellscript instead of alias alias serveme='ssh meillo@192.168.0.100' diff -r ed27560e11be -r 4c1ead2dc501 .dircolorsrc --- a/.dircolorsrc Sat Apr 14 16:11:01 2007 +0200 +++ b/.dircolorsrc Wed Apr 25 20:42:44 2007 +0200 @@ -1,3 +1,6 @@ +# markus schnalke -- http://marmaro.de + + # Configuration file for dircolors, a utility to help you set the # LS_COLORS environment variable used by GNU ls with the --color option. # The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the diff -r ed27560e11be -r 4c1ead2dc501 .keymaprc --- a/.keymaprc Sat Apr 14 16:11:01 2007 +0200 +++ b/.keymaprc Wed Apr 25 20:42:44 2007 +0200 @@ -1,3 +1,5 @@ -# this file is invoked by a shellscript started on init +# this file must be invoked by a shellscript on init +# it is to modify the keymap for terms without X + # have the caps lock key as escape keycode 58 = Escape diff -r ed27560e11be -r 4c1ead2dc501 .screenrc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.screenrc Wed Apr 25 20:42:44 2007 +0200 @@ -0,0 +1,48 @@ +# markus schnalke -- http://marmaro.de +# +# my screenrc +# + +startup_message off +defscrollback 10000 +hardstatus alwayslastline "%{KW} %{R}%H%{KW} < %-w%{Wk} %n %t %{-}%+w > %= %Y-%m-%d %c " + +#termcapinfo xterm|xterms|xs|rxvt|urxvt ti@:te@ + +# startup programs + +screen -t ROOT su +screen w3m marmaro.de +screen -t bash bash + + +# program bindings + +bind R screen -t ROOT 0 su +bind M screen -t cplay 3 cplay -v +bind I screen -t icq 4 centericq + + +# control bindings + +bind l windowlist -b +bind - title +bind n screen +bind o only +bind s split + + +# unbind + +bind \' +bind \" +bind A +bind b +bind B +bind N +bind backspace +bind p +bind t +bind w +bind , + diff -r ed27560e11be -r 4c1ead2dc501 .vim/colors/meillo_self.vim --- a/.vim/colors/meillo_self.vim Sat Apr 14 16:11:01 2007 +0200 +++ b/.vim/colors/meillo_self.vim Wed Apr 25 20:42:44 2007 +0200 @@ -1,6 +1,5 @@ " Vim color file -" Maintainer: markus schnalke -" Last Change: 2007-02-22 +" markus schnalke -- http://marmaro.de " " This is meillo's own color scheme. " diff -r ed27560e11be -r 4c1ead2dc501 .vimrc --- a/.vimrc Sat Apr 14 16:11:01 2007 +0200 +++ b/.vimrc Wed Apr 25 20:42:44 2007 +0200 @@ -1,21 +1,17 @@ +" markus schnalke -- http://marmaro.de +" meillo's vimrc + + set nocompatible -"source $VIMRUNTIME/vimrc_example.vim -"source $VIMRUNTIME/mswin.vim -"behave mswin -" -"set columns=150 lines=50 -"maximiert starten -"au GUIEnter * simalt ~x -"set guifont=Courier_New:h8:cANSI set guifont=Terminus\ 9 "Scrollbar bottom set guioptions+=b -"Cursorblinken abstellen +"no cursor blinking set guicursor+=a:blinkon0 @@ -69,6 +65,5 @@ set path=.,~/Prog -"cd z:/maka/eis colorscheme meillo_self diff -r ed27560e11be -r 4c1ead2dc501 .xinitrc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.xinitrc Wed Apr 25 20:42:44 2007 +0200 @@ -0,0 +1,26 @@ +# markus schnalke -- http://marmaro.de + + +# turn off beeps (dont know if this really works) +xset -b + +# set multimedia keys and CAPS_LOCK as ESC +/usr/bin/xmodmap $HOME/.xmodmaprc + + +# set wallpaper +#eval `cat $HOME/.fehbg` +feh --bg-scale $HOME/.kiwi-tour.jpg + + +# start apps +firefox & +urxvt -e ssh meillo@serveme & +urxvt -e screen -R & + + +# start the window manager +while true ; do + echo `date +"%F %H:%M"` + sleep 2 +done | /home/meillo/dwm diff -r ed27560e11be -r 4c1ead2dc501 .xmodmaprc --- a/.xmodmaprc Sat Apr 14 16:11:01 2007 +0200 +++ b/.xmodmaprc Wed Apr 25 20:42:44 2007 +0200 @@ -1,9 +1,13 @@ +! markus schnalke -- http://marmaro.de +! modifies the keymap for the X-server + + ! have CAPS_LOCK as second ESC remove Lock = Caps_Lock keysym Caps_Lock = Escape -! to enable my multimedia keys +! enable my multimedia keys keycode 144 = F30 keycode 153 = F31 keycode 162 = F32