From 4dc7a6ceb80dfa8ac04ee9ca44a599405493f6cb Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Fri, 17 May 2024 11:22:52 +0400 Subject: [PATCH] Rearrange CLI subcommands a bit --- src/cli.rs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index b628455..24f33bc 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -32,12 +32,6 @@ pub struct Cli { #[derive(Subcommand)] pub enum Sub { - /// Validate the config file. - Validate { - /// Path to config file (default: `$XDG_CONFIG_HOME/niri/config.kdl`). - #[arg(short, long)] - config: Option, - }, /// Communicate with the running niri instance. Msg { #[command(subcommand)] @@ -46,16 +40,22 @@ pub enum Sub { #[arg(short, long)] json: bool, }, + /// Validate the config file. + Validate { + /// Path to config file (default: `$XDG_CONFIG_HOME/niri/config.kdl`). + #[arg(short, long)] + config: Option, + }, /// Cause a panic to check if the backtraces are good. Panic, } #[derive(Subcommand)] pub enum Msg { - /// Print the version of the running niri instance. - Version, /// List connected outputs. Outputs, + /// List workspaces. + Workspaces, /// Print information about the focused window. FocusedWindow, /// Perform an action. @@ -78,8 +78,8 @@ pub enum Msg { #[command(subcommand)] action: OutputAction, }, - /// List workspaces. - Workspaces, + /// Print the version of the running niri instance. + Version, /// Request an error from the running niri instance. RequestError, }