autoreload.py: mirage -> moment

This commit is contained in:
Newbyte 2022-01-24 15:23:56 +01:00
parent 911f7732cd
commit e2fa1e82f8
No known key found for this signature in database
GPG Key ID: 5873C171C9429CFA

View File

@ -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__":