diff --git a/src/cli/cli.rs b/src/cli/cli.rs index 9c16e191..495ef1da 100644 --- a/src/cli/cli.rs +++ b/src/cli/cli.rs @@ -174,7 +174,8 @@ pub fn build_cli() -> App<'static, 'static> { - xcolor (https://github.com/Soft/xcolor)\n \ - grabc (https://www.muquit.com/muquit/software/grabc/grabc.html)\n \ - colorpicker (https://github.com/Jack12816/colorpicker)\n \ - - chameleon (https://github.com/seebye/chameleon)") + - chameleon (https://github.com/seebye/chameleon)\n \ + - KColorChooser (https://kde.org/applications/graphics/org.kde.kcolorchooser)") ) .subcommand( SubCommand::with_name("format") diff --git a/src/cli/colorpicker.rs b/src/cli/colorpicker.rs index 78ea8832..9912a997 100644 --- a/src/cli/colorpicker.rs +++ b/src/cli/colorpicker.rs @@ -94,6 +94,12 @@ pub fn run_external_colorpicker() -> Result { version_args: vec!["-h"], version_output_starts_with: b"", }, + ColorPickerTool { + command: "kcolorchooser", + args: vec!["--print"], + version_args: vec!["-v"], + version_output_starts_with: b"kcolorchooser", + }, ]; for tool in &tools {