Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: space bar = kick drum, metronome toggle moved to F10

Space now triggers a punchy kick (150Hz + 60Hz sine burst).
Metronome toggle moved from space to F10.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+8
+8
fedac/native/pieces/notepat.mjs
··· 446 446 return; 447 447 } 448 448 if (key === "space") { 449 + // Kick drum — short sine burst with pitch drop 450 + if (sound && sound.synth) { 451 + sound.synth({ type: "sine", tone: 150, duration: 0.15, volume: 0.9, attack: 0.001, decay: 0.14, pan: 0.0 }); 452 + sound.synth({ type: "sine", tone: 60, duration: 0.2, volume: 0.7, attack: 0.001, decay: 0.19, pan: 0.0 }); 453 + } 454 + return; 455 + } 456 + if (key === "f10") { 449 457 metronomeEnabled = !metronomeEnabled; 450 458 if (metronomeEnabled) { 451 459 metronomeBeatCount = Math.floor(syncedNow() / (60000 / metronomeBPM));