#!/bin/sh
# Launch xkill with message
#
# License : GNU GPL
# (c) Eko M. Budi, 2004
# (c) Vector Linux, 2004

TEXT="\n
Xkill is a utility for force closing a GUI application.
This program is very dangerous, but is useful for aborting
programs that have displayed undesired windows on the screen.
After clicking the <OK> button, a cursor will appear. Simply
left-click on the undesired window, or left-click to cancel
(right handed mouse). DO NOT click on the desktop or taskbar!
You have been warned."

Xdialog --title "XKill" --msgbox "$TEXT" 0 0 && exec xkill





							