This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Bungloo/Linux/Tentia.py
2012-11-04 22:28:03 +01:00

20 lines
No EOL
368 B
Python
Executable file

#!/usr/bin/env python
from gi.repository import Gtk
import TentiaWindows
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 = TentiaWindows.Preferences(self)
if __name__ == "__main__":
Tentia()