~umang/indicator-stickynotes/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/python3

from backend import Note, NoteSet
from gui import StickyNote
from gi.repository import Gtk, Gdk

def main():
    nset = NoteSet(StickyNote)
    nset.open()
    nset.showall()
    Gtk.main()
    nset.save()

if __name__ == "__main__":
    main()