#!/usr/bin/env bash

# implementation of answer found:
# https://unix.stackexchange.com/questions/258544/create-guest-account-in-gnome-3-x-on-arch-linux
guestuser="dosis-guest"
if [ "${USER}" = "${guestuser}" ]; then
    echo "dosis-guest logged out, nothing to do."
fi

exit 0
