diff --git a/cbd-tui/src/app/now_playing.rs b/cbd-tui/src/app/now_playing.rs index e5ec91b..760089f 100644 --- a/cbd-tui/src/app/now_playing.rs +++ b/cbd-tui/src/app/now_playing.rs @@ -57,7 +57,11 @@ impl NowPlaying { format!("{} by {}", track.title, track.artist,) }; // A missing notification daemon must not crash the TUI. + // The explicit appname keeps notification-daemon rules + // (e.g. mako `app-name=` criteria) stable even if the + // binary is renamed or wrapped. if let Err(err) = Notification::new() + .appname("crabidy") .summary("Now playing") .body(&body) .show()