glibc static build

This commit is contained in:
🪞👃🪞 2025-04-19 14:30:04 +03:00
parent 393634a1a4
commit 59372911d2
12 changed files with 62 additions and 22 deletions

View file

@ -38,15 +38,15 @@ pub struct Cli {
#[arg(short='R', long)] right_to: Vec<String>,
}
#[derive(Debug, Clone, Subcommand)] pub enum Mode {
/// A standalone transport clock.
/// ⏯️ A standalone transport clock.
Clock,
/// A MIDI sequencer.
/// 🎼 A MIDI sequencer.
Sequencer,
/// A MIDI-controlled audio sampler.
/// 🎺 A MIDI-controlled audio sampler.
Sampler,
/// Sequencer and sampler together.12
/// 📻 Sequencer and sampler together.
Groovebox,
/// Multi-track MIDI sequencer.
/// 🎧 Multi-track MIDI sequencer.
Arranger {
/// Number of scenes
#[arg(short = 'y', long, default_value_t = 4)] scenes: usize,