#!/usr/bin/env wish

label .m -text "The Universe has crashed..."
pack .m
button .ok -text Ok -state disabled
button .cancel -text Cancel -command exit
pack .ok -side left
pack .cancel -side right 

bind . <Key-q> exit

