Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/GnomExplorer.py
blob: c6515075061564759426855e470b94f677863250 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# GnomExplorer.py by:
# Cristian García <cristian99garcia@gmail.com>
# Ignacio Rodríguez <nachoel01@gmail.com>
# Python Joven - CeibalJAM! Uruguay

from gi.repository import Gtk


class GnomeExplorer(Gtk.Window):

    def __init__(self):
        Gtk.Window.__init__(self)
        
        self.connect('delete-event', lambda x,i: exit())

        self.show_all()

if __name__ == '__main__':
    GnomeExplorer()
    Gtk.main()