diff --git a/Scripts/Nautilus/prompt-output.py b/Scripts/Nautilus/prompt-output.py deleted file mode 100755 index ce94e38..0000000 --- a/Scripts/Nautilus/prompt-output.py +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env python - -# Helper Script to ask for the output file name -# John Ryland - -import pygtk -pygtk.require('2.0') -import gtk - -# Run the class if this file is run directly -if __name__ == "__main__": - dialog = gtk.Dialog("Output", None, gtk.DIALOG_MODAL, - (gtk.STOCK_OK, gtk.RESPONSE_ACCEPT)) - label = gtk.Label() - label.set_text("\n Please Enter Output Filename: \n") - dialog.vbox.add(label) - label.show() - lineedit = gtk.Entry() - lineedit.set_text("output") - lineedit.show() - dialog.vbox.add(lineedit) - dialog.show() - if ( dialog.run() == gtk.RESPONSE_ACCEPT ): - print lineedit.get_text() - exit(-1) - else: - print "err" - exit(0) -