#!/usr/bin/env bash
PROGNAME="conky-wrapper"
PROGRAMMER="theemahn"
BUILDDATE="05/02/2024"
VERSION="1.38"
WEBSITE="os-builder.com"
AUTHOR="TheeMahn"
EMAIL="<$AUTHOR@$WEBSITE>"
APPNAME="Conky Wrapper"

if [[ -f "ultimate-common" ]]; then
	source ultimate-common
elif [[ -f "/usr/share/ultimate_edition/ultimate-common" ]]; then
	source /usr/share/ultimate_edition/ultimate-common
else
	echo "No Ultimate Edition common source. Please install ultimate-edition-common."
fi
if [[ "${ISROOT}" == "true" ]]; then
		if [[ -f "/home/${IUSER}/conky-builder.sh" ]]; then
				Encapsulate "Rolling to ${IUSER}"
				su "${IUSER}" -c conky
		fi
fi
