Add --debug-input for panel and quick access terminals

This commit is contained in:
Kovid Goyal
2025-07-12 07:29:42 +05:30
parent f34007c65a
commit b01b73a8e5
4 changed files with 15 additions and 0 deletions

View File

@@ -83,6 +83,9 @@ func main(cmd *cli.Command, opts *Options, args []string) (rc int, err error) {
if opts.DebugRendering {
argv = append(argv, `--debug-rendering`)
}
if opts.DebugInput {
argv = append(argv, `--debug-input`)
}
if opts.Detach {
argv = append(argv, `--detach`)
}

View File

@@ -116,6 +116,11 @@ The unique name of this quick access terminal Use a different name if you want m
--debug-rendering
type=bool-set
For debugging interactions with the compositor/window manager.
--debug-input
type=bool-set
For debugging interactions with the compositor/window manager.
'''
def main(args: list[str]) -> None: