diff --git a/abogen/main.py b/abogen/main.py index b88f2c0..0b7875e 100644 --- a/abogen/main.py +++ b/abogen/main.py @@ -48,6 +48,13 @@ def main(): if icon_path: app.setWindowIcon(QIcon(icon_path)) + # Set the .desktop name on Linux + if platform.system() == "Linux": + try: + app.setDesktopFileName("abogen.desktop") + except AttributeError: + pass + ex = abogen() ex.show() sys.exit(app.exec_())