X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=.bashrc;h=850239819e4f2e811faccb787ae88bc00680fb76;hb=cc4abfb3797934ea3fa1d7e93ab85a93fbf259b1;hp=9074f96b256dadb4f1eaf25907d412e6af37d28f;hpb=25a333e8dbc9407e9739ba5e0cbe2d61f07cb970;p=dotfiles.git diff --git a/.bashrc b/.bashrc index 9074f96..8502398 100644 --- a/.bashrc +++ b/.bashrc @@ -1,40 +1,27 @@ -STCONTROL=ignoreboth -HISTSIZE=100000 -HISTFILESIZE=10000 shopt -s checkwinsize shopt -s histappend -set -o vi -. /etc/bash_completion -##Variables -export BROWSER=chromium +. /usr/share/bash-completion/bash_completion + +export TERMINAL=urxvtc export EDITOR=vim -export TERMINAL=urxvt export TERM=screen -export PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin -export COLORFGBG="default:default" -export PYTHONDONTWRITEBYTECODE -export NOTMUCH_CONFIG=~/.mutt/.notmuch-config -export TEXMFHOME=~/.texmf -# -##Colors yeeeyyyy +export BROWSER=firefox + +export HISTFILESIZE=10000 +export HISTSIZE=100000 +export HISTCONTROL=ignoreboth + alias ls='ls --color=auto' alias grep='grep --color=auto' -function getpass { - gpg -d -q --use-agent ~/passwd.gpg | grep "^$1" | awk '{print $3}' -} - -function getuser { - gpg -d -q --use-agent ~/passwd.gpg | grep "^$1" | awk '{print $2}' -} +#[ ! -s ~/.config/mpd/pid ] && mpd -function addaccount { - gpg -d -o ~/passwd -q --use-agent ~/passwd.gpg - echo -n "user? " - read user - echo -n "pass? " - read pass - echo "$1 $user $pass" >> ~/passwd - shred -u -v -z ~/passwd +source /usr/share/git/completion/git-prompt.sh +set_prompt(){ + last_c=$? + PS1='\u@\h' + [[ $last_c -ge 1 ]] && PS1="($last_c) $PS1" + PS1="$PS1\w$(__git_ps1)\n\$ " } +PROMPT_COMMAND='set_prompt'