diff --git a/.bashrc b/.bashrc index abea6e7..0583024 100644 --- a/.bashrc +++ b/.bashrc @@ -5,9 +5,24 @@ # If not running interactively, don't do anything [[ $- != *i* ]] && return +# Get's printed before executing a command. Not sure what to do with that yet. +#PS0='`date`\n' + alias ls='ls --color=auto' alias grep='grep --color=auto' -PS1='[\u@\h \W]\$ ' + +#PS1='[\u@\h \W]\$ ' export PATH=$PATH:/home/jpt/bin export SSH_AUTH_SOCK=/home/jpt/keeagent.socket + +# Let's go Microsoft! +echo "Microsoft Windows [Version 10.0.15063]" +echo "(c) 2017 Microsoft Corporation. Alle Rechte vorbehalten." +echo + +# Prepare sed script +echo "s,/,\\\\,g" > .bashrc.sed + +# Change prompt. :D +PS1='C:`pwd|sed -f ~/.bashrc.sed`>'