npd 0.1.0

Now Playing Daemon is a daemon showing notifications about songs played by MPD.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2025 Daniel Mueller <deso@posteo.net>
// SPDX-License-Identifier: GPL-3.0-or-later

//! Now Playing Daemon (`npd`) is a program for sending `DBus`
//! notifications when the song currently played by MPD changes.

use anyhow::Result;

use npd::run;


fn main() -> Result<()> {
  run()
}