Newer
Older
Import / code / Scripts / Nautilus / .done.py
@John John on 29 Dec 2020 474 bytes bulk import from macbookpro checkouts
#!/usr/bin/env python

# Helper Script to ask for the output file name
# John Ryland

import sys
import pygtk
pygtk.require('2.0')
import gtk

# Run the class if this file is run directly
if __name__ == "__main__":
  dialog = gtk.Dialog("Done", None, gtk.DIALOG_MODAL,
                     (gtk.STOCK_OK, gtk.RESPONSE_ACCEPT))
  label = gtk.Label()
  label.set_text("\n  Done: " + sys.argv[1] + " \n")
  dialog.vbox.add(label)
  label.show()
  dialog.show()
  dialog.run()