diff --git a/gui/bare.py b/gui/bare.py new file mode 100755 index 0000000..7067021 --- /dev/null +++ b/gui/bare.py @@ -0,0 +1,14 @@ +#!/usr/bin/python + +import wx + +class App(wx.App): + + def OnInit(self): + frame = wx.Frame(parent=None, title='Bare') + frame.Show(1) + return True + +app = App() +app.MainLoop() +