
# environment variables

# user agent for wget(1)
WGET_AGENT="Mozilla/5.0 (X11; Linux x86_64; rv:10.0)"
WGET_AGENT="$WGET_AGENT Gecko/20100101 Firefox/10.0"
export WGET_AGENT

export PRINTER=HP-LaserJet-4000


# don't put duplicate lines or lines starting with space in the history.
HISTCONTROL=ignoredups

# append to the history file, don't overwrite it
shopt -s histappend

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize

# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
__BASH_VERSION_1__=`bash --version | head -1 | cut -d' ' -f4 | cut -d. -f1`
if [ $__BASH_VERSION_1__ -ge 4 ]; then
	shopt -s globstar
fi

# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"


# color codes for LESS in black-on-white terminal
export LESS_TERMCAP_mb=$'\e[1;32m'
export LESS_TERMCAP_md=$'\e[1;32m'
export LESS_TERMCAP_me=$'\e[0m'
export LESS_TERMCAP_se=$'\e[0m'
export LESS_TERMCAP_so=$'\e[01;34m'
export LESS_TERMCAP_ue=$'\e[0m'
export LESS_TERMCAP_us=$'\e[1;4;31m'

