#! /bin/bash

zenity --question --title 'Are you sure you want to Logout?' --text 'Hit OK to clear all information and logout.' --ok-label='OK' --cancel-label='Cancel'
zreturn=$?;
if [ $zreturn -eq "0" ] ; then
	/usr/bin/groovix-logout
fi
