# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
	. ~/.bashrc
fi

# User specific environment and startup programs

BASH_ENV=$HOME/.bashrc
export BASH_ENV 

# freedesktop standard directories

XDG_DATA_HOME=$HOME/.local/share
export XDG_DATA_HOME

XDG_CONFIG_HOME=$HOME/.config
export XDG_CONFIG_HOME

XDG_CACHE_HOME=$HOME/.cache
export XDG_DATA_HOME

# Write here additional initializations. Not to the end of this file.

# Executing one of the speech-enabled environments, according to user-specific options;
if [ -r ~/.homeros_onlogin ]; then
    source ~/.homeros_onlogin
fi

# WARNING:Do not write anything below this line.
# This code may never be executed.
