#!/bin/bash # reboots the system and displays a nice message # $Id$ # if [ -x $(which Xdialog) ] then Xdialog \ --title "Reboot" \ --no-buttons \ --infobox "System reboot in progress ..." 6 34 5000 \ & sudo /sbin/reboot else sudo /sbin/reboot fi