#!/bin/bash
#########################################################
# 							#
# This is BashStyle-NG 7.4				#
#							#
# Licensed under GNU LESSER GENERAL PUBLIC LICENSE v3	#
#							#
# Copyright 2007 - 2008 Christopher Bratusek		#
#							#
#########################################################

export HISTCONTROL=$(gconftool-2 --get /apps/bashstyle/hist_control)

export HISTIGNORE=$(gconftool-2 --get /apps/bashstyle/hist_ignore)

export FIGNORE=$(gconftool-2 --get /apps/bashstyle/fignore)

export CDPATH=$(gconftool-2 --get /apps/bashstyle/cdpath)

export FCEDIT=$(gconftool-2 --get /apps/bashstyle/fcedit)

export TMOUT=$(gconftool-2 --get /apps/bashstyle/tmout)

export HISTSIZE=$(gconftool-2 --get /apps/bashstyle/hist_size)

export HISTFILESIZE=$(gconftool-2 --get /apps/bashstyle/hist_size)

if [[ $(gconftool-2 --get /apps/bashstyle/path) != "" ]]; then
	export PATH=$(gconftool-2 --get /apps/bashstyle/path)
fi

if [[ $(gconftool-2 --get /apps/bashstyle/use_grep_color) == true ]]; then \
	export GREP_OPTIONS="--color=auto";
	export GREP_COLOR=$(gconftool-2 --get /apps/bashstyle/grep_color);
fi

