mirror of
https://github.com/jlengrand/Ivolution.git
synced 2026-03-10 08:21:18 +00:00
13 lines
237 B
Python
Executable File
13 lines
237 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from gi.repository import Gtk, GObject
|
|
from ivolution.gui import IvolutionWindow
|
|
|
|
|
|
import os
|
|
print "Script"
|
|
print os.getcwd()
|
|
my_app = IvolutionWindow.IvolutionWindow("Ivolution")
|
|
GObject.threads_init()
|
|
Gtk.main()
|