diff --git a/autoreload.py b/autoreload.py index d9a0c043..f3e8116e 100755 --- a/autoreload.py +++ b/autoreload.py @@ -2,10 +2,10 @@ """Usage: ./autoreload.py [MIRAGE_ARGUMENTS]... Automatically rebuild and restart the application when source files change. -CONFIG+=dev will be passed to qmake, see mirage.pro. +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 `mirage --help`. +Any other arguments will be passed to the app, see `moment --help`. Use `pip3 install --user -U requirements-dev.txt` before running this.""" @@ -50,9 +50,9 @@ def run_app(args=sys.argv[1:]) -> None: print("\n\x1b[36m", "─" * term_size().columns, "\x1b[0m\n", sep="") with suppress(KeyboardInterrupt): - cmd("qmake", "mirage.pro", "CONFIG+=dev") + cmd("qmake", "moment.pro", "CONFIG+=dev") cmd("make") - cmd("./mirage", "-name", "dev", *args) + cmd("./moment", "-name", "dev", *args) if __name__ == "__main__":