~umang/indicator-stickynotes/trunk

1 by Umang Varma
Initial commit. Somewhat working sticky notes.
1
#!/usr/bin/python3
2
3
from backend import Note, NoteSet
4
from gui import StickyNote
5
from gi.repository import Gtk, Gdk
6
7
def main():
8
    nset = NoteSet(StickyNote)
9
    nset.open()
10
    nset.showall()
11
    Gtk.main()
12
    nset.save()
13
14
if __name__ == "__main__":
15
    main()