diff --git a/src/main.rs b/src/main.rs index 5d6c2d0..6bbf309 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,12 +10,12 @@ use systemctl_tui::{ #[derive(Parser, Debug)] #[command(version = version(), about = "A simple TUI for systemd services")] struct Args { - /// Enable performance tracing (in Chromium Event JSON format) - #[clap(short, long)] - trace: bool, /// The scope of the services to display #[clap(short, long, default_value = "all")] scope: Scope, + /// Enable performance tracing (in Chromium Event JSON format) + #[clap(short, long)] + trace: bool, } #[derive(Parser, Debug, ValueEnum, Clone)]