diff --git a/README.md b/README.md index 9095dcd..ac5b54c 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,10 @@ A template project for Python with Gtk applications. * PyGObject ### Note -There are several "\" strings that need to be set according to your app's name located at: +There is a "\" string that needs to be set according to your app's name located at: * \_\_builtins\_\_.py -* \_\_main\_\_.py * user_config/usr/share/app_name -In addition, check the 'ipc_server.py' \_\_init\_\_ section to change the socket information. - For the user_config, traverse all the way down and copy the contents to either: * /usr/share/\ * /\/.config/\ diff --git a/src/__main__.py b/src/__main__.py index 5f08a75..56e28ef 100644 --- a/src/__main__.py +++ b/src/__main__.py @@ -24,7 +24,7 @@ if __name__ == "__main__": ''' Set process title, get arguments, and create GTK main thread. ''' try: - setproctitle('') + setproctitle(f'{app_name}') faulthandler.enable() # For better debug info parser = argparse.ArgumentParser()