bell ringing

This commit is contained in:
IoIxD 2026-07-07 16:10:53 -07:00
commit a10b727dd3

View file

@ -4,6 +4,8 @@ use smithay::wayland::xdg_system_bell::XdgSystemBellHandler;
impl XdgSystemBellHandler for State {
fn ring(&mut self, surface: Option<WlSurface>) {
println!("{:?} ringed!", surface);
if let Some(sysaudioplayer) = self.sysaudioplayer.as_ref() {
sysaudioplayer.blink3();
}
}
}