forked from tony/.dot-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.mpdconf
executable file
·79 lines (72 loc) · 2.2 KB
/
.mpdconf
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#1:37 An example configuration file for MPD
# See the mpd.conf man page for a more detailed description of each parameter.
######################## REQUIRED PATHS ########################
# You can put symlinks in here, if you like. Make sure that
# the user that mpd runs as (see the 'user' config parameter)
# can read the files in this directory.
music_directory "~/Music"
playlist_directory "~/.mpd/playlists"
db_file "~/.mpd/mpd.db"
log_file "~/.mpd/mpd.log"
pid_file "~/.mpd/mpd.pid"
state_file "~/.mpd/mpdstate"
################################################################
######################## DAEMON OPTIONS ########################
#
# If started as root, MPD will drop root privileges and run as
# this user instead. Otherwise, MPD will run as the user it was
# started by. If left unspecified, MPD will not drop root
# privileges at all (not recommended).
#
# user "mpd"
#
# The address and port to listen on.
#
bind_to_address "127.0.0.1"
port "6600"
#
# Controls the amount of information that is logged. Can be
# "default", "secure", or "verbose".
#
#log_level "default"
#
auto_update "yes"
auto_update_depth "2"
follow_outside_symlinks "yes"
follow_inside_symlinks "yes"
################################################################
#mixer_type "software"
audio_output {
type "fifo"
name "My FIFO"
path "/tmp/mpd.fifo"
format "44100:16:2"
auto_resample "no"
use_mmap "yes"
}
#audio_output {
#type "osx"
#name "OSX"
#}
# audio_output {
# type "alsa"
# name "alsa MPD"
# }
# audio_output {
# type "osx"
# name "CoreAudio"
# mixer_type "software"
# }
audio_output {
type "pulse"
name "My MPD PulseAudio Output"
}
# audio_output {
# type "osx"
# name "My Mac Device"
# mixer_type "software"
# }
#$ mkdir ~/.ncmpcpp
#$ cp /usr/share/doc/ncmpcpp/doc/config ~/.ncmpcpp/config
#$ echo "visualizer_fifo_path = \"/tmp/mpd.fifo\"" >> ~/.ncmpcpp/config
#$ echo "visualizer_output_name = \"My FIFO\"" >> ~/.ncmpcpp/config