#!/bin/sh gpe-question --icon /usr/share/pixmaps/gpe-logout.png --question "Are you sure you want to log out? Unsaved data from applications will be lost." --buttons !gtk-cancel "ok:Log out" # check for button number returned by gpe-question: if [ $? -eq 1 ]; then echo "Logout."; killall fluxbox fi # hack to run on simpad too killall metacity; else echo "Logout cancelled."; fi