Linux init
This commit is contained in:
parent
3488848906
commit
5a6c5093a3
4 changed files with 115 additions and 0 deletions
20
Linux/Tentia.py
Executable file
20
Linux/Tentia.py
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
#!/usr/bin/env python
|
||||
from gi.repository import Gtk
|
||||
import PreferencesWindow
|
||||
|
||||
class Tentia:
|
||||
|
||||
def __init__(self):
|
||||
self.setup_preferences_window()
|
||||
self.preferences_window.show_all()
|
||||
Gtk.main()
|
||||
|
||||
def quit(self):
|
||||
Gtk.main_quit
|
||||
|
||||
def setup_preferences_window(self):
|
||||
self.preferences_window = PreferencesWindow(self)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
Tentia()
|
||||
Reference in a new issue