dotfiles

My dotfiles.
git clone git://git.ryanmj.xyz/dotfiles.git
Log | Files | Refs | LICENSE

mpd.conf (939B)


      1 # Recommended location for database
      2 db_file            "~/.config/mpd/database"
      3 
      4 # Logs to systemd journal
      5 log_file           "syslog"
      6 
      7 # The music directory is by default the XDG directory, uncomment to amend and choose a different directory
      8 music_directory    "~/Music"
      9 
     10 # Uncomment to refresh the database whenever files in the music_directory are changed
     11 auto_update "yes"
     12 
     13 # Uncomment to enable the functionalities
     14 playlist_directory "~/.config/mpd/playlists"
     15 pid_file           "~/.config/mpd/pid"
     16 state_file         "~/.config/mpd/state"
     17 sticker_file       "~/.config/mpd/sticker.sql"
     18 
     19 
     20 audio_output {
     21         type            "pulse"
     22         name            "pulse audio"
     23 }
     24 
     25 decoder {    
     26         plugin "wildmidi"
     27         config_file "/etc/wildmidi/wildmidi.conf"
     28 }
     29 
     30 audio_output {
     31        type            "fifo"
     32        name            "Visualizer feed"
     33        path            "/tmp/mpd.fifo"
     34        format          "44100:16:2"
     35 }
     36