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
// Copyright (C) 2025 Daniel Mueller <deso@posteo.net>
// SPDX-License-Identifier: GPL-3.0-or-later

use clap::Parser;


/// A program/daemon sending notifications when MPD plays a new song.
#[derive(Debug, Parser)]
#[command(version = env!("VERSION"))]
pub struct Args {}