#!/bin/bash # # shuts the system down and displays a nice message # # $Id$ if [ -x /usr/bin/Xdialog ] then /usr/bin/Xdialog \ --title "Shutdown" \ --no-buttons \ --infobox "System shutdown in progress ..." 6 34 5000 \ & sudo /sbin/halt else sudo /sbin/halt fi