#!/bin/bash

# Directory for *.cfg file
DIR_CONF="${HOME}/Library/Utsusemi"

# Create the user config directory if it is not exist
if [ ! -d "${DIR_CONF}" ]; then
    mkdir -p "${DIR_CONF}"
fi


# Define environmental variable configuration file
# (UTSUSEMI_DATA_DIR & UTSUSEMI_USR_PRIV_HOME)
export CONFFILE_ENV="${DIR_CONF}/utsusemienv.cfg"

