This commit is contained in:
Auric Vente
2024-07-25 20:37:43 -06:00
parent 1b21a9adcd
commit 8117a6a588
3 changed files with 29 additions and 2 deletions

View File

@@ -105,3 +105,21 @@ class ArgSpec:
type=str,
info="Custom title for the window",
)
ArgSpec.add_argument(
"width",
type=int,
info="The width of the window in pixels",
)
ArgSpec.add_argument(
"height",
type=int,
info="The height of the window in pixels",
)
ArgSpec.add_argument(
"program",
type=str,
info="The internal name of the program",
)