X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=.bashrc;h=9074f96b256dadb4f1eaf25907d412e6af37d28f;hb=17e714b8a7e802c9d9dee00eeee9de1e419d13be;hp=a5df78af23fceee8f2ad637b5a023c61fbab1d2d;hpb=b5caa249d5711c13116a8ff7e0556766fce4666b;p=dotfiles.git diff --git a/.bashrc b/.bashrc index a5df78a..9074f96 100644 --- a/.bashrc +++ b/.bashrc @@ -6,32 +6,35 @@ 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 export PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin export COLORFGBG="default:default" export PYTHONDONTWRITEBYTECODE - -#Colors yeeeyyyy +export NOTMUCH_CONFIG=~/.mutt/.notmuch-config +export TEXMFHOME=~/.texmf +# +##Colors yeeeyyyy alias ls='ls --color=auto' alias grep='grep --color=auto' -#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 +}