# HG changeset patch # User meillo@marmaro.de # Date 1176548881 -7200 # Node ID 41e1e617711d10762472a279c5e3f97a5f8a1e76 # Parent a5f356e3bebcb5ac1d31efa0284ea67db20f2be5 added more files diff -r a5f356e3bebc -r 41e1e617711d .bashrc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.bashrc Sat Apr 14 13:08:01 2007 +0200 @@ -0,0 +1,67 @@ +# ~/.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 + +# check the window size after each command and, if necessary, +# update the values of LINES and COLUMNS. +shopt -s checkwinsize + +# enable colored ls output +eval "`dircolors -b $HOME/.dircolorsrc`" + +# command prompt +PS1='\033[01;31m<\033[00m \h \033[01;31m|\033[00m \u \033[01;31m|\033[00m \w \033[01;31m>\033[00m\n \$ ' + +# If this is an xterm set the title to user@host:dir +case "$TERM" in +xterm*|rxvt*) + PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"' + ;; +*) + ;; +esac + + +# aliases + +alias ls='ls -F --color=auto' + +alias ll='ls -lF' +alias lh='ls -lhF' +alias la='ls -AF' + +alias dh='df -h' + +alias du1='du -h --max-depth=1 --exclude=".?*" ' +alias du2='du -h --max-depth=2 --exclude=".?*" ' + +alias serveme='ssh meillo@192.168.0.100' + +alias fireworks='wine /usr/share/Fireworks4/Fireworks\ 4.exe' +alias stendhal='java -jar /home/meillo/Spiele/Stendhal/stendhal' + + +# vars + +export PATH=$PATH:/home/meillo/Prog/Shell/bin + +export VISUAL=vim +export EDITOR=vim + +export DEBEMAIL=meillo@marmaro.de +export DEBFULLNAME="markus schnalke" + +export HISTSIZE=10000 +export HISTFILESIZE=$HISTSIZE +export HISTCONTROL=ignoredups + + +# enable programmable completion features (you don't need to enable +# this, if it's already enabled in /etc/bash.bashrc and /etc/profiles +# sources /etc/bash.bashrc). +if [ -f /etc/bash_completion ]; then + . /etc/bash_completion +fi diff -r a5f356e3bebc -r 41e1e617711d .inputrc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.inputrc Sat Apr 14 13:08:01 2007 +0200 @@ -0,0 +1,4 @@ +"\e[5~": history-search-backward +"\e[6~": history-search-forward + +set bell-style=visual diff -r a5f356e3bebc -r 41e1e617711d .keymaprc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.keymaprc Sat Apr 14 13:08:01 2007 +0200 @@ -0,0 +1,3 @@ +# this file is invoked by a shellscript started on init +# have the caps lock key as escape +keycode 58 = Escape diff -r a5f356e3bebc -r 41e1e617711d .xmodmaprc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.xmodmaprc Sat Apr 14 13:08:01 2007 +0200 @@ -0,0 +1,14 @@ +! have CAPS_LOCK as second ESC +remove Lock = Caps_Lock +keysym Caps_Lock = Escape + + +! to enable my multimedia keys +keycode 144 = F30 +keycode 153 = F31 +keycode 162 = F32 +keycode 164 = F33 +keycode 176 = F34 +keycode 174 = F35 +keycode 129 = F26 +keycode 160 = F27