# disable lock screen option for guest users
# (it makes no sense to lock the screen if there is no password to open it)

if [ "$USER" = 'guest' ]; then
  dconf write /org/gnome/desktop/lockdown/disable-lock-screen true
  export GUEST_SESSION=true
fi
