Few more commands

This commit is contained in:
Nox Sluijtman 2025-07-06 00:20:06 +02:00
parent 293da4f330
commit f0ba8bf593
Signed by: Egg
SSH key fingerprint: SHA256:2sG9X3C7Xvq2svGumz1/k7cm8l4G9+qAtAeugqB4J9M
3 changed files with 48 additions and 2 deletions

View file

@ -94,5 +94,20 @@ pub enum Commands {
// position: Option<u32>,
// },
/// Shuffles the current queueue
#[command(visible_alias = "scramble")]
Shuffle,
/// Toggles repeat
Repeat,
/// Toggles random
Random,
/// Toggles consume
Consume,
/// Toggles single
Single,
/// Get or set volume
#[command(visible_alias = "vol")]
Volume {
#[arg(value_hint = ValueHint::Other)]
percentage: Option<i8>,
},
}