diff --git a/README.md b/README.md index e8ca93e..61f8b65 100644 --- a/README.md +++ b/README.md @@ -407,6 +407,14 @@ The basic view is best for times when the user is familiar with Console Applicat No Config pretty much does what you'd expect: it doesn't show a configuration screen. It hops right to the `display` section and begins execution of the host program. This is the one for improving the appearance of little one-off scripts. +To use this mode, set `auto_start=True` in the Gooey decorator. + +```python +@Gooey(auto_start=True) +def main (): + ... +``` +