#! /bin/bash
#--------------------------------------------------------------------------------------------------------
# Name: Linux Lite - Lite Welcome
# Architecture: all
# Author: Jerry Bezencon
# Website: https://www.linuxliteos.com
#--------------------------------------------------------------------------------------------------------

# Ensure multi-language support
export LANG=C

checkfile_file_path="$HOME/Desktop/ubiquity.desktop"

if [ -f "$checkfile_file_path" ]; then
	/usr/bin/lite-welcome-live
else
	/usr/bin/lite-welcome-installed
fi
