
time_settings ()
{
clear
yellow ; bold
echo -e "\nYour date and time are set to $(date)"
echo -e "Do you want to change that? (y/n)\n"
read -s -n 1 CHANGE
if [ $CHANGE = y -o $CHANGE = Y ] ; then
	sudo dpkg-reconfigure tzdata
fi
clear
yellow ; bold
echo -e "\nWould you like a clock in the top right corner of your screens? [y]"
white
read -s -n 1 VCSTIME
    case $VCSTIME in
    n)
    if pidof vcstime > /dev/null 2>&1 ; then
        sudo killall vcstime  		     # user doesn't want a clock now
    fi
    f-tools
    ;;
    *)
    if pidof vcstime > /dev/null 2>&1 ; then
        sudo killall vcstime  	             # Refresh vcstime clock to reflect setting
        sudo -b vcstime > /dev/null 2>&1
    else
        sudo -b vcstime > /dev/null 2>&1 
    fi
    f-tools
    ;;
esac
}
