Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion framework_lib/src/commandline/clap_std.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ struct ClapCli {
/// <key> <RGB> [<RGB> ...]
/// Example: 0 0xFF000 0x00FF00 0x0000FF
#[clap(num_args = 2..)]
#[arg(long, value_parser=maybe_hex::<u64>)]
#[arg(long, value_parser=maybe_hex::<u64>, value_names(["START", "HEXCOLOR"]))]
rgbkbd: Vec<u64>,

/// Control PS2 touchpad emulation (DEBUG COMMAND, if touchpad not working, reboot system)
Expand Down
Loading