Advertisement
msjche

~/.ncmpcpp/config

Feb 25th, 2013
488
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.60 KB | None | 0 0
  1. ##### connection settings #####
  2. mpd_host = "localhost"
  3. mpd_port = "6600"
  4. mpd_music_dir = "/home/msjche/Music/"
  5.  
  6. ##### timeouts and delays #####
  7. #mpd_connection_timeout = "5"
  8. mpd_crossfade_time = "2"
  9. playlist_disable_highlight_delay = "3"
  10. message_delay_time = "2"
  11.  
  12. ##### visualizer settings #####
  13. #visualizer_fifo_path = "/tmp/mpd.fifo"
  14. #visualizer_output_name = "visualizer"
  15. #visualizer_sync_interval = "1"
  16. #visualizer_type = "wave" (spectrum/wave)
  17. #visualizer_type = "spectrum" (spectrum/wave)
  18.  
  19. ##### song format #####
  20. ##
  21. ## for song format you can use:
  22. ##
  23. ## %l - length
  24. ## %f - filename
  25. ## %D - directory
  26. ## %a - artist
  27. ## %A - album artist
  28. ## %t - title
  29. ## %b - album
  30. ## %y - year
  31. ## %n - track number (01/12 -> 01)
  32. ## %N - full track info (01/12 -> 01/12)
  33. ## %g - genre
  34. ## %c - composer
  35. ## %p - performer
  36. ## %d - disc
  37. ## %C - comment
  38. ## $R - begin right alignment
  39. ##
  40. ## available values:
  41. ##
  42. ## - 0 - default window color (discards all other colors)
  43. ## - 1 - black
  44. ## - 2 - red
  45. ## - 3 - green
  46. ## - 4 - yellow
  47. ## - 5 - blue
  48. ## - 6 - magenta
  49. ## - 7 - cyan
  50. ## - 8 - white
  51. ## - 9 - end of current color
  52. ##
  53. ## Note: colors can be nested.
  54.  
  55. #song_list_format = "{%a - }{%t}|{$8%f$9}$R{$3(%l)$9}"
  56. song_status_format = "$2%a $7• $4%t $7• $3%b {}$7• $5%y$7"
  57. #song_library_format = "{%n - }{%t}|{%f}"
  58.  
  59. ## Note: Below variables are for alternative version of user's interface.
  60. ## Their syntax supports all tags and colors listed above plus some extra
  61. ## markers used for text attributes. They are followed by character '$'.
  62. ## After that you can put:
  63. ##
  64. ## - b - bold text
  65. ## - u - underline text
  66. ## - r - reverse colors
  67. ## - a - use alternative character set
  68. ##
  69. #alternative_header_first_line_format = "$b$1$aqqu$/a$9 {%t}|{%f} $1$atqq$/a$9$/b"
  70. #alternative_header_second_line_format = "{{$4$b%a$/b$9}{ - $7%b$9}{ ($4%y$9)}}|{%D}"
  71.  
  72. ## Note: Below variables also supports
  73. ## text attributes listed above.
  74. now_playing_prefix = "$b$8»$2»$4»$3» "
  75. now_playing_suffix = "$/b"
  76. #browser_playlist_prefix = "$2playlist$9 "
  77. #selected_item_prefix = "$6"
  78. #selected_item_suffix = "$9"
  79. ## colors are not supported for below variable
  80. #song_window_title_format = "{%a - }{%t}|{%f}"
  81.  
  82. ##### columns settings #####
  83. ##
  84. ## syntax of song columns list format is "column column etc."
  85. ##
  86. ## - syntax for each column is:
  87. ##
  88. ## (width of column)[column's color]{displayed tag}
  89. ##
  90. ## Note: You can give a column additional attributes by putting appropriate
  91. ## character after displayed tag character. Available attributes are:
  92. ##
  93. ## - r - column will be right aligned
  94. ## - E - if tag is empty, empty tag marker won't be displayed
  95. ##
  96. ## You can also:
  97. ##
  98. ## - give a column custom name by putting it after attributes,
  99. ## separated with character ':', e.g. {lr:Length} gives you
  100. ## right aligned column of lengths named "Length".
  101. ##
  102. ## - define sequence of tags, that have to be displayed in case
  103. ## predecessor is empty in a way similar to the one in classic
  104. ## song format, i.e. using '|' character, e.g. {a|c|p:Owner}
  105. ## creates column named "Owner" that tries to display artist
  106. ## tag and then composer and performer if previous ones are
  107. ## not available.
  108. # (Organizes song column format in playlist)
  109. song_columns_list_format = "(5f)[magenta]{l} (30)[green]{a} (40)[magenta]{t|f} (25)[green]{b}"
  110.  
  111. ##### various settings #####
  112. #
  113. ##
  114. ## Note: Custom command that will be executed each
  115. ## time song changes. Useful for notifications etc.
  116. ##
  117. ## Attention: It doesn't support song format anymore.
  118. ## Use `ncmpcpp --now-playing SONG_FORMAT` instead.
  119. #execute_on_song_change = ""
  120.  
  121. playlist_show_remaining_time = "no"
  122. #playlist_shorten_total_times = "no"
  123. #playlist_separate_albums = "no"
  124. playlist_display_mode = "columns" (classic/columns)
  125. #browser_display_mode = "classic" (classic/columns)
  126. #search_engine_display_mode = "classic" (classic/columns)
  127. #discard_colors_if_item_is_selected = "yes"
  128. #incremental_seeking = "yes"
  129. #seek_time = "1"
  130. autocenter_mode = "yes"
  131. centered_cursor = "yes"
  132. progressbar_look = "─╼·"
  133. #default_place_to_search_in = "database" (database/playlist)
  134. #user_interface = "classic" (classic/alternative)
  135. media_library_left_column = "a" (possible values: a,y,g,c,p, legend above)
  136. #default_find_mode = "wrapped" (wrapped/normal)
  137. #default_space_mode = "add" (add/select)
  138. default_tag_editor_left_col = "albums" (albums/dirs)
  139. default_tag_editor_pattern = "%n - %t"
  140. header_visibility = "yes"
  141. statusbar_visibility = "yes"
  142. titles_visibility = "yes"
  143. header_text_scrolling = "yes"
  144. fancy_scrolling = "yes"
  145. cyclic_scrolling = "yes"
  146. #lines_scrolled = "2"
  147. follow_now_playing_lyrics = "no"
  148. #store_lyrics_in_song_dir = "no"
  149.  
  150. #ncmpc_like_songs_adding = "no" (enabled - add/remove, disabled - always add)
  151. #show_hidden_files_in_local_browser = "no"
  152. #display_screens_numbers_on_start = "yes"
  153.  
  154. startup_screen = "2"
  155. jump_to_now_playing_song_at_start = "yes"
  156.  
  157. ask_before_clearing_main_playlist = "no"
  158. #clock_display_seconds = "no"
  159. display_volume_level = "yes"
  160. display_bitrate = "yes"
  161. display_remaining_time = "no"
  162. #regular_expressions = "basic" (basic/extended)
  163. ignore_leading_the = "yes"
  164. #block_search_constraints_change_if_items_found = "yes"
  165. mouse_support = "yes"
  166. #mouse_list_scroll_whole_page = "yes"
  167. #empty_tag_marker = "<empty>"
  168. #tag_editor_extended_numeration = "no"
  169. media_library_display_date = "yes"
  170. media_library_display_empty_tag = "yes"
  171. media_library_disable_two_column_mode = "no"
  172. enable_window_title = "no"
  173.  
  174. ## Note: You can choose default search mode for search
  175. ## engine. Available modes are:
  176. ##
  177. ## - 1 - use mpd built-in searching (no regexes, pattern matching)
  178. ## - 2 - use ncmpcpp searching (pattern matching with support for regexes,
  179. ## but if your mpd is on a remote machine, downloading big database
  180. ## to process it can take a while
  181. ## - 3 - match only exact values (this mode uses mpd function for searching
  182. ## in database and local one for searching in current playlist)
  183. ##
  184. #search_engine_default_search_mode = "1"
  185.  
  186. allow_physical_files_deletion = "yes"
  187. allow_physical_directories_deletion = "yes"
  188. external_editor = "vim"
  189. use_console_editor = "yes"
  190.  
  191. ##### colors definitions #####
  192. empty_tag_color = "green"
  193. header_window_color = "cyan"
  194. volume_color = "red"
  195. state_line_color = "magenta"
  196. state_flags_color = "white"
  197. main_window_color = "magenta"
  198. color1 = "green"
  199. color2 = "blue"
  200. main_window_highlight_color = "green"
  201. progressbar_color = "red"
  202. statusbar_color = "yellow"
  203. alternative_ui_separator_color = "yellow"
  204. active_column_color = "blue"
  205. visualizer_color = "yellow"
  206. window_border_color = "yellow"
  207. active_window_border = "yellow"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement