add support for built-in mpd searching in search engine
[ncmpcpp.git] / doc / config
blob754819e60b3e63446551fd9a4348a43da59695ed
1 ####################################################
2 ## this is example configuration file, copy it to ##
3 ## ~/.ncmpcpp/config and set up your preferences  ##
4 ####################################################
6 ##### connection settings #####
8 ## set it in order to make tag editor and renaming files work properly
10 #mpd_host = "localhost"
12 #mpd_port = "6600"
14 #mpd_music_dir = ""
16 #mpd_connection_timeout = "5"
18 #mpd_crossfade_time = "5"
20 #mpd_communication_mode = "polling" (polling/notifications)
22 ##### music visualizer #####
24 ## Note: In order to make music visualizer work you'll
25 ## need to use mpd fifo output, whose format parameter
26 ## has to be set to 44100:16:1. Example configuration:
27 ## (it has to be put into mpd.conf)
29 ## audio_output {
30 ##        type            "fifo"
31 ##        name            "My FIFO"
32 ##        path            "/tmp/mpd.fifo"
33 ##        format          "44100:16:1"
34 ## }
37 #visualizer_fifo_path = ""
40 ## Note: Below parameter is needed for ncmpcpp
41 ## to determine which output provides data for
42 ## visualizer and thus allow syncing between
43 ## visualization and sound as currently there
44 ## are some problems with it.
47 #visualizer_output_name = ""
50 ## Note: To enable spectrum frequency visualization
51 ## you need to compile ncmpcpp with fftw3 support.
54 #visualizer_type = "wave" (spectrum/wave)
56 ##### system encoding #####
58 ## ncmpcpp should detect your charset encoding
59 ## but if it failed to do so, you can specify
60 ## charset encoding you are using here.
62 ## Note: You can see whether your ncmpcpp build
63 ## supports charset detection by checking output
64 ## of `ncmpcpp --version`.
66 ## Note: Since MPD uses utf8 by default, setting
67 ## this option makes sense only if your encoding
68 ## is different.
71 #system_encoding = ""
73 ##### delays #####
75 ## delay after playlist highlighting will be disabled (0 = don't disable)
77 #playlist_disable_highlight_delay = "5"
79 ## defines how long various messages are supposed to be visible
81 #message_delay_time = "4"
83 ##### song format #####
85 ## for song format you can use:
87 ## %l - length
88 ## %f - filename
89 ## %D - directory
90 ## %a - artist
91 ## %t - title
92 ## %b - album
93 ## %y - year
94 ## %n - track number (01/12 -> 01)
95 ## %N - full track info (01/12 -> 01/12)
96 ## %g - genre
97 ## %c - composer
98 ## %p - performer
99 ## %d - disc
100 ## %C - comment
101 ## $R - begin right alignment
103 ## you can also put them in { } and then it will be displayed
104 ## only if all requested values are available and/or define alternate
105 ## value with { }|{ } eg. {%a - %t}|{%f}
107 ## Note: Format that is similar to "%a - %t" (i.e. without any additional
108 ## braces) is equal to "{%a - %t}", so if one of the tags is missing,
109 ## you'll get nothing.
111 ## text can also have different color than the main window has,
112 ## eg. if you want length to be green, write $3%l$9
114 ## available values:
116 ## - 0 - default window color (discards all other colors)
117 ## - 1 - black
118 ## - 2 - red
119 ## - 3 - green
120 ## - 4 - yellow
121 ## - 5 - blue
122 ## - 6 - magenta
123 ## - 7 - cyan
124 ## - 8 - white
125 ## - 9 - end of current color
127 ## Note: colors can be nested.
130 #song_list_format = "{%a - }{%t}|{$8%f$9}$R{$3(%l)$9}"
132 #song_status_format = "{{%a{ \"%b\"{ (%y)}} - }{%t}}|{%f}"
134 #song_library_format = "{%n - }{%t}|{%f}"
136 #tag_editor_album_format = "{(%y) }%b"
139 ## Note: Below variables are for alternative version of user's interface.
140 ## Their syntax supports all tags and colors listed above plus some extra
141 ## markers used for text attributes. They are followed by character '$'.
142 ## After that you can put:
144 ## - b - bold text
145 ## - u - underline text
146 ## - r - reverse colors
147 ## - a - use alternative character set
149 ## If you don't want to use an attribute anymore, just put it again, but
150 ## this time insert character '/' between '$' and attribute character,
151 ## e.g. {$b%t$/b}|{$r%f$/r} will display bolded title tag or filename
152 ## with reversed colors.
155 #alternative_header_first_line_format = "$b$1$aqqu$/a$9 {%t}|{%f} $1$atqq$/a$9$/b"
157 #alternative_header_second_line_format = "{{$4$b%a$/b$9}{ - $7%b$9}{ ($4%y$9)}}|{%D}"
160 ## Note: Below variables also supports
161 ## text attributes listed above.
164 #now_playing_prefix = "$b"
166 #now_playing_suffix = "$/b"
168 #browser_playlist_prefix = "$2playlist$9 "
170 #selected_item_prefix = "$6"
172 #selected_item_suffix = "$9"
174 ## colors are not supported for below variable
176 #song_window_title_format = "{%a - }{%t}|{%f}"
178 ##### columns settings #####
180 ## syntax of song columns list format is "column column etc."
182 ## - syntax for each column is:
184 ## (width of column)[column's color]{displayed tag}
186 ## Note: Width is by default in %, if you want a column to
187 ## have fixed size, add 'f' after the value, e.g. (10)[white]{a}
188 ## will be the column that take 10% of screen (so the real column's
189 ## width will depend on actual screen size), whereas (10f)[white]{a}
190 ## will take 10 terminal cells, no matter how wide the screen is.
192 ## - color is optional (if you want the default one, type [])
194 ## Note: You can give a column additional attributes by putting appropriate
195 ## character after displayed tag character. Available attributes are:
197 ## - r - column will be right aligned
198 ## - E - if tag is empty, empty tag marker won't be displayed
200 ## E.g. {lr} will give you right aligned column of lengths.
203 #song_columns_list_format = "(7f)[green]{l} (25)[cyan]{a} (40)[]{t} (30)[red]{b}"
205 ##### various settings #####
208 ## Note: Custom command that will be executed each
209 ## time song changes. Useful for notifications etc.
211 ## Attention: It doesn't support song format anymore.
212 ## Use `ncmpcpp --now-playing SONG_FORMAT` instead.
214 #execute_on_song_change = ""
216 #playlist_show_remaining_time = "no"
218 #playlist_display_mode = "classic" (classic/columns)
220 #browser_display_mode = "classic" (classic/columns)
222 #search_engine_display_mode = "classic" (classic/columns)
224 #incremental_seeking = "yes"
226 #seek_time = "1"
228 #autocenter_mode = "no"
230 #centered_cursor = "no"
232 #progressbar_look = "=>"
234 #default_place_to_search_in = "database" (database/playlist)
236 #user_interface = "classic" (classic/alternative)
238 #media_library_left_column = "a" (possible values: a,y,g,c,p, legend above)
240 #default_find_mode = "wrapped" (wrapped/normal)
242 #default_space_mode = "add" (add/select)
244 #default_tag_editor_left_col = "albums" (albums/dirs)
246 #default_tag_editor_pattern = "%n - %t"
248 #header_visibility = "yes"
250 #statusbar_visibility = "yes"
252 #header_text_scrolling = "yes"
254 #fancy_scrolling = "yes"
256 #cyclic_scrolling = "no"
258 #lines_scrolled = "2"
260 #follow_now_playing_lyrics = "no"
262 #ncmpc_like_songs_adding = "no" (enabled - add/remove, disabled - always add)
264 #show_hidden_files_in_local_browser = "no"
266 #display_screens_numbers_on_start = "yes"
269 ## How shall key_screen_switcher work?
271 ## - yes - always switch between browser and playlist
272 ## - no  - switch between current and last used screen
274 #screen_switcher_browser_only = "yes"
276 #jump_to_now_playing_song_at_start = "yes"
278 #ask_before_clearing_main_playlist = "no"
280 #clock_display_seconds = "no"
282 #display_bitrate = "no"
284 #display_remaining_time = "no"
286 #regular_expressions = "basic" (basic/extended)
289 ## Note: If below is enabled, ncmpcpp will ignore leading
290 ## "The" word while sorting items in browser, tags in
291 ## media library, etc.
293 #ignore_leading_the = "no"
295 #block_search_constraints_change_if_items_found = "yes"
297 #mouse_support = "yes"
299 #mouse_list_scroll_whole_page = "yes"
301 #empty_tag_marker = "<empty>"
303 #tag_editor_extended_numeration = "no"
305 #media_library_display_date = "yes"
307 #enable_window_title = "yes"
310 ## Note: You can choose default search mode for search
311 ## engine. Available modes are:
313 ## - 1 - use mpd built-in searching (no regexes, pattern matching)
314 ## - 2 - use ncmpcpp searching (pattern matching with support for regexes,
315 ##       but if your mpd is on a remote machine, downloading big database
316 ##       to process it can take a while
317 ## - 3 - match only exact values (this mode uses mpd function for searching
318 ##       in database and local one for searching in current playlist)
321 #search_engine_default_search_mode = "1"
324 ## Note: These triggers will allow you to phisically remove
325 ## files and directories from your hdd using ncmpcpp's
326 ## browser screen.
329 #allow_physical_files_deletion = "no"
331 #allow_physical_directories_deletion = "no"
333 ##### lyrics support #####
335 ## supported lyrics databases:
337 ## - 1 - lyricsplugin.com
340 #lyrics_database = "1"
342 #external_editor = ""
344 #use_console_editor = "no" (set to yes, if your editor is console app)
346 ##### colors definitions #####
348 #colors_enabled = "yes"
350 #empty_tag_color = "cyan"
352 #header_window_color = "default"
354 #volume_color = "default"
356 #state_line_color = "default"
358 #state_flags_color = "default"
360 #main_window_color = "yellow"
362 #color1 = "white"
364 #color2 = "green"
366 #main_window_highlight_color = "yellow"
368 #progressbar_color = "default"
370 #statusbar_color = "default"
372 #alternative_ui_separator_color = "black"
374 #active_column_color = "red"
376 #window_border_color = "green"
378 #active_window_border = "red"