background and removed a lot of nonsense
[dotfiles.git] / .bashrc
diff --git a/.bashrc b/.bashrc
index b401423..9074f96 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -6,8 +6,8 @@ shopt -s histappend
 set -o vi
 . /etc/bash_completion
 
-#Variables
-export BROWSER=lynx
+##Variables
+export BROWSER=chromium
 export EDITOR=vim
 export TERMINAL=urxvt
 export TERM=screen
@@ -15,25 +15,26 @@ export PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin
 export COLORFGBG="default:default"
 export PYTHONDONTWRITEBYTECODE
 export NOTMUCH_CONFIG=~/.mutt/.notmuch-config
-
-#Colors yeeeyyyy
+export TEXMFHOME=~/.texmf
+#
+##Colors yeeeyyyy
 alias ls='ls --color=auto'
 alias grep='grep --color=auto'
-alias mutt='~/downloads/mutt-n/mutt'
 
-#Watch youtube videos in the terminal
-function ytview {
-       if [ "$#" -ne "1" ]; then
-               echo "usage $0 yturl"
-       else
-               get_flash_videos -q -f - $1 | cvlc -A alsa -V aa -
-       fi
+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}'
 }
 
-#Mount cloud file storage and start daemon if necessary
-if ! mountpoint -q ~/copy; then
-       encfs ~/.copy.encr ~/copy
-fi
-if ! pidof CopyConsole >> /dev/null; then
-       ~/bin/copy/x86_64/CopyConsole -daemon 2>&1 1>/dev/null
-fi
+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
+}