diff options
author | self <self@sateoki.xyz> | 2022-02-13 23:43:02 +0000 |
---|---|---|
committer | self <self@sateoki.xyz> | 2022-02-13 23:43:02 +0000 |
commit | 538fc348552b17f363674b1506a3ac36c3d86098 (patch) | |
tree | 99ee911dbb9e30025aa7aa96285c31f5c269fcee | |
parent | c4bd69ba3436e974c1a2061f1a2e6c9eaf0752c4 (diff) |
Updated mpd: directories now under /var/mpd
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | mpd.conf | 26 | ||||
-rwxr-xr-x | ncmpcpp-config | 4 |
3 files changed, 16 insertions, 15 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..299d7c8 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +newsboat/cache.db @@ -10,14 +10,14 @@ # be disabled and audio files will only be accepted over ipc socket (using # file:// protocol) or streaming files over an accepted protocol. # -music_directory "~/.music" +music_directory "/var/mpd/music" # # This setting sets the MPD internal playlist directory. The purpose of this # directory is storage for playlists created by MPD. The server will use # playlist files not created by the server but only if they are in the MPD # format. This setting defaults to playlist saving being disabled. # -playlist_directory "~/.config/mpd/playlists" +playlist_directory "/var/mpd/playlists" # # This setting sets the location of the MPD database. This file is used to @@ -26,7 +26,7 @@ playlist_directory "~/.config/mpd/playlists" # MPD to accept files over ipc socket (using file:// protocol) or streaming # files over an accepted protocol. # -db_file "~/.config/mpd/database" +db_file "/var/mpd/database" # These settings are the locations for the daemon log files for the daemon. # @@ -44,7 +44,7 @@ log_file "syslog" # # If you use systemd, do not configure a pid_file. # -pid_file "~/.config/mpd/pid" +# pid_file "~/.config/mpd/pid" # This setting sets the location of the file which contains information about # most variables to get MPD back into the same general shape it was in before @@ -216,15 +216,15 @@ input { # # An example of an ALSA output: # -#audio_output { -# type "alsa" -# name "My ALSA Device" -## device "hw:0,0" # optional -## mixer_type "hardware" # optional -## mixer_device "default" # optional -## mixer_control "PCM" # optional -## mixer_index "0" # optional -#} +audio_output { + type "alsa" + name "My ALSA Device" +# device "hw:0,0" # optional +# mixer_type "hardware" # optional +# mixer_device "default" # optional +# mixer_control "PCM" # optional +# mixer_index "0" # optional +} # # An example of an OSS output: # diff --git a/ncmpcpp-config b/ncmpcpp-config index d461d7d..f9bf8f5 100755 --- a/ncmpcpp-config +++ b/ncmpcpp-config @@ -19,7 +19,7 @@ ## MPD clients (eg. ncmpc) also use that location. ## # -lyrics_directory = ~/.config/ncmpcpp/lyrics +lyrics_directory = ~/.config/ncmpcpp/lyrics # Maybe update this to /var/ncmpcpp/lyrics? # ##### connection settings ##### # @@ -33,7 +33,7 @@ mpd_port = 6600 # ## Needed for tag editor and file operations to work. ## -mpd_music_dir = ~/.music +mpd_music_dir = /var/mpd/music # #mpd_crossfade_time = 5 # |