diff --git a/autoreload.py b/autoreload.py index f3e8116e..ab253d63 100755 --- a/autoreload.py +++ b/autoreload.py @@ -3,9 +3,7 @@ Automatically rebuild and restart the application when source files change. CONFIG+=dev will be passed to qmake, see moment.pro. -The application will be launched with `-name dev`, which sets the first -part of the WM_CLASS as returned by xprop on Linux. -Any other arguments will be passed to the app, see `moment --help`. +Arguments will be passed to the app, see `moment --help`. Use `pip3 install --user -U requirements-dev.txt` before running this.""" @@ -52,7 +50,7 @@ def run_app(args=sys.argv[1:]) -> None: with suppress(KeyboardInterrupt): cmd("qmake", "moment.pro", "CONFIG+=dev") cmd("make") - cmd("./moment", "-name", "dev", *args) + cmd("./moment", *args) if __name__ == "__main__":