diff --git a/backend/src/bin/embassyd.rs b/backend/src/bin/embassyd.rs index fee26359f..1dfb802bb 100644 --- a/backend/src/bin/embassyd.rs +++ b/backend/src/bin/embassyd.rs @@ -219,7 +219,7 @@ async fn inner_main(cfg_path: Option<&str>) -> Result, Error> { rpc_ctx.shutdown.subscribe(), ); - embassy::sound::CHARGE.play().await?; + embassy::sound::CHIME.play().await?; futures::try_join!( server diff --git a/backend/src/sound.rs b/backend/src/sound.rs index 6c74d9960..2d52e1a7f 100644 --- a/backend/src/sound.rs +++ b/backend/src/sound.rs @@ -347,16 +347,6 @@ pub const CHIME: Song<[(Option, TimeSlice); 2]> = song!(400, [ note(E, 6, Tie(&Dot(&Quarter), &Half)); ]); -pub const CHARGE: Song<[(Option, TimeSlice); 7]> = song!(128, [ - note(G, 4, Triplet(&Eighth)); - note(C, 5, Triplet(&Eighth)); - note(E, 5, Triplet(&Eighth)); - note(G, 5, Triplet(&Eighth)); - rest(Triplet(&Eighth)); - note(E, 5, Triplet(&Eighth)); - note(G, 5, Half); -]); - pub const SHUTDOWN: Song<[(Option, TimeSlice); 12]> = song!(120, [ note(C, 5, Eighth); rest(Eighth);