feat(main): debug launched clients flag

This commit is contained in:
Nova
2024-09-04 05:14:43 -04:00
parent 1ca054c2b3
commit 4683710f09
2 changed files with 25 additions and 14 deletions

View File

@@ -54,6 +54,10 @@ struct CliArgs {
#[clap(id = "PRIORITY", short = 'o', long = "overlay", action)]
overlay_priority: Option<u32>,
/// Debug the clients started by the server
#[clap(short = 'd', long = "debug", action)]
debug_launched_clients: bool,
/// Run a script when ready for clients to connect. If this is not set the script at $HOME/.config/stardust/startup will be ran if it exists.
#[clap(id = "PATH", short = 'e', long = "execute-startup-script", action)]
startup_script: Option<PathBuf>,