X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=.bashrc;h=850239819e4f2e811faccb787ae88bc00680fb76;hb=cc4abfb3797934ea3fa1d7e93ab85a93fbf259b1;hp=518a01433defd24d0d0e90aaad017e07a3f0d7ca;hpb=336b6c6c69a03210ca9f666e82de17503a129045;p=dotfiles.git diff --git a/.bashrc b/.bashrc index 518a014..8502398 100644 --- a/.bashrc +++ b/.bashrc @@ -1,36 +1,27 @@ -STCONTROL=ignoreboth -HISTSIZE=100000 -HISTFILESIZE=10000 shopt -s checkwinsize shopt -s histappend -. /etc/bash_completion -#Variables -export BROWSER=lynx +. /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 BROWSER=firefox + +export HISTFILESIZE=10000 +export HISTSIZE=100000 +export HISTCONTROL=ignoreboth -#Colors yeeeyyyy alias ls='ls --color=auto' alias grep='grep --color=auto' -alias email='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 -} +#[ ! -s ~/.config/mpd/pid ] && mpd -#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 +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'