removing all file not used for install-station

renamed gbinstall to install-station
updated setup.py
This commit is contained in:
ericbsd
2020-08-28 22:50:06 -03:00
parent 1988a39332
commit 3143bdd512
59 changed files with 15 additions and 5467 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/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()