From 26a71585f0435b2152a177f47ec1eb61a28a9e54 Mon Sep 17 00:00:00 2001 From: Jeff Date: Wed, 23 Aug 2023 00:39:46 -0400 Subject: [PATCH] Change command line arguments --- src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index 051c8df..02169a3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -25,12 +25,12 @@ struct Args { #[arg(short, long)] command: Option, - /// Location of the file to run. - #[arg(short, long)] - path: Option, - + // Whether to launch the dedicated GUI window. #[arg(short, long)] gui: bool, + + /// Location of the file to run. + path: Option, } fn main() {