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 18:44:27 +01:00

20 lines
No EOL
362 B
Python
Executable file

#!/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()