From 0d7c5d199ac81b18d3ed16301c8d82f8c3d730ae Mon Sep 17 00:00:00 2001 From: Inorishio Date: Sat, 30 May 2026 20:59:30 +0200 Subject: [PATCH] Update zshell-img-tools/src/main.rs Lint had issues with --help so for now I'm just removing it. --- zshell-img-tools/src/main.rs | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/zshell-img-tools/src/main.rs b/zshell-img-tools/src/main.rs index dfd0fc3..b8e8a33 100644 --- a/zshell-img-tools/src/main.rs +++ b/zshell-img-tools/src/main.rs @@ -77,22 +77,6 @@ fn run() -> Result<()> { let mut i = 0; while i < args.len() { match args[i].as_str() { - "--help" => { - println!(); - println!("Usage: zshell-img-tools [options]"); - println!(); - println!("All options are required"); - println!("Options:"); - println!(" --rounding Enable or disable rounded corners"); - println!(" --radius Set the radius for rounded corners"); - println!(" --shadow Enable or disable shadow"); - println!(" --shadow-blur Set the blur radius for the shadow"); - println!(" --shadow-offset-x Set the horizontal offset for the shadow"); - println!(" --shadow-offset-y Set the vertical offset for the shadow"); - println!(" --shadow-color Set the color of the shadow as comma-separated RGBA values (0-255)"); - println!(" --scale Scale all effects by this factor (e.g. 2.0 for display scale)"); - return Ok(()); - } "--image" => { image_path = Some(next_arg(&args, &mut i, "--image")?); }