X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=.bashrc;h=9074f96b256dadb4f1eaf25907d412e6af37d28f;hb=25a333e8dbc9407e9739ba5e0cbe2d61f07cb970;hp=b4014236c9cdbeea559dad36dccae5032a181dc4;hpb=46ceb3f058de4733444f96ea1803504e65a7f460;p=dotfiles.git diff --git a/.bashrc b/.bashrc index b401423..9074f96 100644 --- 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 +}