-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmpdlcd.conf
63 lines (40 loc) · 1.22 KB
/
mpdlcd.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[display]
# MPD data refresh rate
refresh = 0.5
# LCDd screen name for MPDlcd
lcdproc_screen = MPD
# When to enable backlight:
# - always: always on (default)
# - never: never on
# - play: when playing
# - playpause: when playing or in pause
backlight_on = play
# Settings for changing the screen priority when music is playing or not
priority_playing = foreground
priority_not_playing = background
[patterns]
# List your patterns here
# You can use line continuations to simulate line breaks.
pattern1 = {state} {song format="%(artist)s - %(title)s"} {elapsed}
pattern2 = {song format="%(artist)s",speed=4} {elapsed}
{song format="%(title)s",speed=2,mode=b} {state}
pattern3 = {song format="%(artist)s",speed=4}
{song format="%(album)s - %(title)s",speed=2}
{state} {elapsed} / {total}
pattern4 = {song format="%(artist)s",speed=4}
{song format="%(album)s",speed=4}
{song format="%(title)s",speed=2}
{elapsed} {state} {remaining}
[connections]
# MPD server
mpd = localhost:6600
# LCDd server
lcdproc = localhost:13666
[logging]
# Log level - debug, info, warning, error
loglevel = info
# Enable syslog
syslog = 1
# Log to the 'daemon' facility
syslog_facility = daemon
# vim:set ft=dosini et ts=4: