dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.margiolis.net/dotfiles.git
Log | Files | Refs | README | LICENSE

mpd.conf (745B)


      1 db_file            "~/.config/mpd/database"
      2 log_file           "~/.config/mpd/log"
      3 music_directory    "~/.config/mpd/music"
      4 playlist_directory "~/.config/mpd/playlists"
      5 pid_file           "~/.config/mpd/pid"
      6 state_file         "~/.config/mpd/state"
      7 sticker_file       "~/.config/mpd/sticker.sql"
      8 
      9 auto_update             "yes"
     10 bind_to_address         "127.0.0.1"
     11 restore_paused          "yes"
     12 max_output_buffer_size  "16384"
     13 
     14 audio_output {
     15         type            "oss"
     16         name            "oss"
     17         mixer_type      "software"
     18         mixer_device    "/dev/mixer"
     19 }
     20 
     21 audio_output {
     22         type            "fifo"
     23         name            "toggle_visualizer"
     24         path            "/tmp/mpd.fifo"
     25         format          "44100:16:2"
     26 }