serviceName=$(echo $1 | cut -d'/' -f'2')
if [[ $1 =~ "/" && $serviceName != "" ]]; then	
	if [ -f "$1" ]; then
		sudo ln -s $(readlink -f $1) /usr/lib/systemd/user/$serviceName
	else
		echo "Warning ! You must be in the dotfile folder to execute this !"
		echo "Sorry the file $1 not found !"
	fi
else
	echo "Syntax: services/<name of the service"
fi