disabled systemd-backlight, too slow, manual backlight set in i3config'
[dotfiles.git] / .bashrc
diff --git a/.bashrc b/.bashrc
index 9074f96..7b2a7ac 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -1,40 +1,30 @@
-STCONTROL=ignoreboth
-HISTSIZE=100000
-HISTFILESIZE=10000
 shopt -s checkwinsize
 shopt -s histappend
-set -o vi
-. /etc/bash_completion
 
-##Variables
-export BROWSER=chromium
-export EDITOR=vim
+. /usr/share/bash-completion/bash_completion
+
 export TERMINAL=urxvt
+export EDITOR=vim
 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
-alias ls='ls --color=auto'
-alias grep='grep --color=auto'
+export BROWSER=firefox
 
-function getpass {
-       gpg -d -q --use-agent ~/passwd.gpg | grep "^$1" | awk '{print $3}'
-}
+export HISTFILESIZE=10000
+export HISTSIZE=100000
+export HISTCONTROL=ignoreboth
 
-function getuser {
-       gpg -d -q --use-agent ~/passwd.gpg | grep "^$1" | awk '{print $2}'
-}
+export SUDO_ASKPASS=/usr/lib/ssh/ssh-askpass
+export NOTMUCH_CONFIG=/home/mart/.mutt/notmuch-config
+
+export PATH=$PATH:~/projects/clean/bin
+
+alias ls='ls --color=auto'
+alias grep='grep --color=auto'
+alias vi=vim
 
-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
+set_prompt(){
+       last_c=$?
+       PS1='\u@\h'
+       [[ $last_c -ge 1 ]] && PS1="($last_c) $PS1"
+       PS1="$PS1\w\$ "
 }
+PROMPT_COMMAND='set_prompt'