Files
installer-gui/install-station
T
ericbsd 3143bdd512 removing all file not used for install-station
renamed gbinstall to install-station
updated setup.py
2020-08-28 22:53:43 -03:00

20 lines
308 B
Python
Executable File

#!/usr/local/bin/python
import sys
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
installer = "/usr/local/lib/gbinstall/"
sys.path.append(installer)
from gbiWindow import MainWindow
def main():
Gtk.main()
return 0
if __name__ == "__main__":
MainWindow()
main()