blob: 48de332d5f06c973d76132494f415258779c7b2c (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* name of the icon used for notifications */
#define ICON_SOUND "sound"
/* strings used to display notification messages
* TEXT_PLAY needs to include three '%s', in order:
* title, artist, album */
#define TEXT_TOPIC "MPD Notification"
#define TEXT_PLAY "Playing <b>%s</b>\nby <i>%s</i>\nfrom <i>%s</i>"
#define TEXT_PAUSE "Paused playback"
#define TEXT_STOP "Stopped playback"
#define TEXT_NONE "No action received yet."
#define TEXT_UNKNOWN "(unknown)"
/* how to connect to mpd host ?
* MPD_HOST is the server's host name, IP address or Unix socket path. If the
* resolver returns more than one IP address for a host name, this functions
* tries all of them until one accepts the connection. NULL is allowed here,
* which will connect to the default host.
* MPD_PORT is the TCP port to connect to, 0 for default port. If "host" is
* a Unix socket path, this parameter is ignored.
* MPD_TIMEOUT is the timeout in milliseconds, 0 for the default timeout. */
#define MPD_HOST NULL
#define MPD_PORT 0
#define MPD_TIMEOUT 0
|