diff options
Diffstat (limited to 'src/args.rs')
-rw-r--r-- | src/args.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/args.rs b/src/args.rs index 3ddfe8b..f02efa1 100644 --- a/src/args.rs +++ b/src/args.rs @@ -83,10 +83,6 @@ pub struct CliArgs { #[clap(short = 'H', long = "hidden")] pub hidden: bool, - /// Show theme selector in frontend - #[clap(long = "change-theme")] - pub change_theme: bool, - /// Default color scheme #[clap( short = 'c', @@ -172,6 +168,10 @@ pub struct CliArgs { #[clap(short = 'F', long = "hide-version-footer")] pub hide_version_footer: bool, + /// Hide theme selector + #[clap(long = "hide-theme-selector")] + pub hide_theme_selector: bool, + /// If enabled, display a wget command to recursively download the current directory #[clap(short = 'W', long = "show-wget-footer")] pub show_wget_footer: bool, |