Advertisement
abunaidesu

ncmpcpp config

Mar 22nd, 2013
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.22 KB | None | 0 0
  1. ##### song format #####
  2. ##
  3. ## for song format you can use:
  4. ##
  5. ## %l - length
  6. ## %f - filename
  7. ## %D - directory
  8. ## %a - artist
  9. ## %t - title
  10. ## %b - album
  11. ## %y - year
  12. ## %n - track number (01/12 -> 01)
  13. ## %N - full track info (01/12 -> 01/12)
  14. ## %g - genre
  15. ## %c - composer
  16. ## %p - performer
  17. ## %d - disc
  18. ## %C - comment
  19. ## %R - begin right alignment
  20. ##
  21. ## you can also put them in { } and then it will be displayed
  22. ## only if all requested values are available and/or define alternate
  23. ## value with { }|{ } eg. {%a - %t}|{%f}
  24. ##
  25. ## Note: Format that is similar to "%a - %t" (i.e. without any additional
  26. ## braces) is equal to "{%a - %t}", so if one of the tags is missing,
  27. ## you'll get nothing.
  28. ##
  29. ## text can also have different color than the main window has,
  30. ## eg. if you want length to be green, write $3%l$9
  31. ##
  32. ## available values:
  33. ##
  34. ## - 0 - default window color (discards all other colors)
  35. ## - 1 - black
  36. ## - 2 - red
  37. ## - 3 - green
  38. ## - 4 - yellow
  39. ## - 5 - blue
  40. ## - 6 - magenta
  41. ## - 7 - cyan
  42. ## - 8 - white
  43. ## - 9 - end of current color
  44. ##
  45. ## Note: colors can be nested.
  46. ##
  47.  
  48. # Visualizer
  49. visualizer_in_stereo = "yes"
  50. visualizer_fifo_path = "/tmp/mpd.fifo"
  51. visualizer_output_name = "FIFO"
  52. visualizer_sync_interval = "1"
  53. visualizer_type = "wave"
  54. visualizer_look = ""
  55.  
  56. # Playlist
  57. song_columns_list_format = "(6f)[red]{l} (35)[white]{a} (35)[magenta]{t|f}"
  58. song_list_format = "{$8%a$9} {$6%b$9} {$2%t$9}{$R$8%l$9}"
  59. now_playing_suffix = "$2♫$/b "
  60. now_playing_prefix = "$b$2 $8»$2»$/b$b$8»$2»$/b$9$b "
  61. playlist_display_mode = "columns"
  62. autocenter_mode = "yes"
  63. centered_cursor = "no"
  64. playlist_disable_highlight_delay = "3"
  65. playlist_separate_albums = "yes"
  66.  
  67. # Bars
  68. alternative_header_first_line_format = "$b$1 ♫$9$/b{ $6{%t}|{%f}$9} $b$1 $9$/b"
  69. alternative_header_second_line_format = "{{$8%a$/b$9}{ $b$1-$9$/b $2%b$9}{ $b$1»$9$/b $8%y$/b$9 $b$1«$/b$9}}|$b{%D}$/b"
  70. user_interface = "alternative"
  71. progressbar_look = " "
  72. display_bitrate = "yes"
  73. titles_visibility = "no"
  74. header_visibility = "no"
  75.  
  76. # Browser
  77. browser_playlist_prefix = "[P]$9 "
  78. browser_display_mode = "columns"
  79.  
  80. # Colors
  81. active_column_color = "red"
  82. active_window_border = "white"
  83. alternative_ui_separator_color = "black"
  84. color1 = "white"
  85. color2 = "black"
  86. empty_tag_marker = " "
  87. empty_tag_color = "white"
  88. header_window_color = "white"
  89. main_window_color = "black"
  90. main_window_highlight_color = "magenta"
  91. progressbar_color = "black"
  92. state_line_color = "magenta"
  93. state_flags_color = "white"
  94. statusbar_color = "white"
  95. visualizer_color = "red"
  96. volume_color = "white"
  97.  
  98. # Screen
  99. locked_screen_width_part = "55"
  100. ask_for_locked_screen_width_part = "no"
  101.  
  102. # Others
  103. mpd_host = "localhost"
  104. mpd_port = "6600"
  105. mpd_connection_timeout = "5"
  106. mpd_crossfade_time = "2"
  107. mpd_music_dir = "/media/run/jonas/EILA ILMATAR JUUTILAINEN/music/"
  108. mpd_communication_mode = "polling"
  109. clock_display_seconds = "yes"
  110. startup_screen = "2"
  111. enable_window_title = "yes"
  112. search_engine_display_mode = "columns"
  113. follow_now_playing_lyrics = "yes"
  114. message_delay_time = "3"
  115. song_window_title_format = "{%a - }{%t}|{%f}"
  116. system_encoding = "utf8"
  117. mouse_list_scroll_whole_page = "no"
  118. lines_scrolled = "1"
  119. progressbar_boldness = "no"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement