man: update the description of window_border_color
[ncmpcpp.git] / doc / ncmpcpp.1
blob1c6a1bba07ebf54123e9c6496d4318fabe6ead08
1 .TH "ncmpcpp" "1"
2 .SH "NAME"
3 ncmpcpp \- An ncurses Music Player Daemon (MPD) client.
4 .SH "SYNOPSIS"
5 .B ncmpcpp
6 [options]
7 .SH "DESCRIPTION"
8 ncmpcpp is an ncurses client for MPD (Music Player Daemon), inspired by ncmpc.
10 Read more about MPD at http://www.musicpd.org
11 .SH "OPTIONS"
12 .B \-h, \-\-host
13 Connect to server at host [localhost]
14 .TP
15 .B \-p, \-\-port
16 Connect to server at port [6600]
17 .TP
18 .B \-c, \-\-config
19 Use alternative configuration file
20 .TP
21 .B \-s, \-\-screen <name>
22 Specify the startup screen (<name> may be: help, playlist, browser, search_engine, media_library, playlist_editor, tag_editor, outputs, visualizer, clock)
23 .TP
24 .B \-?, \-\-help
25 Display help.
26 .TP
27 .B \-v, \-\-version
28 Display version information.
29 .TP
30 .SH "CONFIGURATION"
31 When ncmpcpp starts, it tries to read user's settings from the ~/.ncmpcpp/config file. If no user's configuration is found, ncmpcpp uses its default configuration. An example configuration file containing all default values is provided with ncmpcpp and can be usually found in /usr/share/doc/ncmpcpp (exact location may depend on used distribution or configure prefix).
33 Note: Configuration option values can either be enclosed in quotation marks or not.
34  - If they are enclosed, the leftmost and the rightmost quotation marks are treated as delimiters, therefore it is not necessary to escape quotation marks you use within the value itself.
35  - If they are not, any whitespace characters between = and the first printable character of the value, as well as whitespace characters after the last printable character of the value are trimmed.
37 Therefore the rule of thumb is: if you need whitespaces at the beginning or at the end of the value, enclose it in quotation marks. Otherwise, don't.
39 Note: COLOR has to be the name (not a number) of one of colors 1-8 from SONG FORMAT section.
41 Supported configuration options:
42 .TP
43 .B ncmpcpp_directory = PATH
44 Directory for storing ncmpcpp related files. Changing it is useful if you want to store everything somewhere else and provide command line setting for alternative location to config file which defines that while launching ncmpcpp.
45 .TP
46 .B lyrics_directory = PATH
47 Directory for storing downloaded lyrics. It defaults to ~/.lyrics since other MPD clients (eg. ncmpc) also use that location.
48 .TP
49 .B mpd_host = HOST
50 Connect to MPD running on specified host/unix socket. When HOST starts with a '/', it is assumed to be a unix socket.
51 .TP
52 .B mpd_port = PORT
53 Connect to MPD on the specified port.
54 .TP
55 .B mpd_music_dir = PATH
56 Search for files in specified directory. This is needed for tag editor to work.
57 .TP
58 .B mpd_connection_timeout = SECONDS
59 Set connection timeout to MPD to given value.
60 .TP
61 .B mpd_crossfade_time = SECONDS
62 Default number of seconds to crossfade, if enabled by ncmpcpp.
63 .TP
64 .B visualizer_fifo_path = PATH
65 Path to mpd fifo output. This is needed to make music visualizer work (note that output sound format of this fifo has to be either 44100:16:1 or 44100:16:2, depending on whether you want mono or stereo visualization)
66 .TP
67 .B visualizer_output_name = NAME
68 Name of output that provides data for visualizer. Needed to keep sound and visualization in sync.
69 .TP
70 .B visualizer_in_stereo = yes/no
71 Should be set to 'yes', if fifo output's format was set to 44100:16:2.
72 .TP
73 .B visualizer_sample_multiplier = NUMBER
74 Multiply received samples by given value. Very useful for proper visualization of quiet music.
75 .TP
76 .B visualizer_sync_interval = SECONDS
77 Defines interval between syncing visualizer and audio outputs.
78 .TP
79 .B visualizer_type = spectrum/wave
80 Defines default visualizer type (spectrum is available only if ncmpcpp was compiled with fftw support).
81 .TP
82 .B visualizer_look = STRING
83 Defines visualizer's look (string has to be exactly 2 characters long: first one is for wave whereas second for frequency spectrum).
84 .TP
85 .B system_encoding = ENCODING
86 If you use encoding other than utf8, set it in order to handle utf8 encoded strings properly.
87 .TP
88 .B playlist_disable_highlight_delay = SECONDS
89 Delay for highlighting playlist since the last key was pressed. If set to 0, highlighting never fades away.
90 .TP
91 .B message_delay_time = SECONDS
92 Delay for displayed messages to remain visible.
93 .TP
94 .B song_list_format
95 Format for songs' list.
96 .TP
97 .B song_status_format
98 Song's format for statusbar.
99 .TP
100 .B song_library_format
101 Format for songs in Media library.
103 .B tag_editor_album_format
104 Format for albums' list in Tag editor.
106 .B browser_sort_mode
107 Determines sort mode for browser. Possible values are "name", "mtime", "format" and "noop".
109 .B browser_sort_format
110 Format to use for sorting songs in browser. For this option to be effective, browser_sort_mode must be set to "format".
112 .B alternative_header_first_line_format = TEXT
113 Now playing song format for the first line in alternative user interface header window.
115 .B alternative_header_second_line_format = TEXT
116 Now playing song format for the second line in alternative user interface header window.
118 .B now_playing_prefix = TEXT
119 Prefix for currently playing song.
121 .B now_playing_suffix = TEXT
122 Suffix for currently playing song.
124 .B browser_playlist_prefix = TEXT
125 Prefix for playlists in Browser.
127 .B selected_item_prefix = TEXT
128 Prefix for selected items.
130 .B selected_item_suffix = TEXT
131 Suffix for selected items.
133 .B modified_item_prefix = TEXT
134 Prefix for modified item (tag editor).
136 .B song_window_title_format
137 Song format for window title.
139 .B song_columns_list_format
140 Format for songs' list displayed in columns.
142 .B execute_on_song_change = COMMAND
143 Shell command to execute on song change.
145 .B playlist_show_remaining_time = yes/no
146 If enabled, time remaining to end of playlist will be shown after playlist's statistics.
148 .B playlist_shorten_total_times = yes/no
149 If enabled, total/remaining playlist time displayed in statusbar will be shown using shortened units' names (d:h:m:s instead of days:hours:minutes:seconds).
151 .B playlist_separate_albums = yes/no
152 If enabled, separators will be placed between albums.
154 .B playlist_display_mode = classic/columns
155 Default display mode for Playlist.
157 .B browser_display_mode = classic/columns
158 Default display mode for Browser.
160 .B search_engine_display_mode = classic/columns
161 Default display mode for Search engine.
163 .B playlist_editor_display_mode = classic/columns
164 Default display mode for Playlist editor.
166 .B discard_colors_if_item_is_selected = yes/no
167 Indicates whether custom colors of tags have to be discarded if item is selected or not.
169 .B incremental_seeking = yes/no
170 If enabled, seek time will increment by one each second of seeking.
172 .B seek_time = SECONDS
173 Base seek time to begin with.
175 .B volume_change_step = NUMBER
176 Number of percents volume has to be increased/decreased by in volume_up/volume_down.
178 .B autocenter_mode = yes/no
179 Default state for autocenter mode at start.
181 .B centered_cursor = yes/no
182 If enabled, currently highlighted position in the list will be always centered.
184 .B progressbar_look = TEXT
185 This variable defines the look of progressbar. Note that it has to be exactly two or three characters long.
187 .B progressbar_boldness = yes/no
188 This variable defines whether progressbar should be displayed in bold or not.
190 .B default_place_to_search_in = database/playlist
191 If set to "playlist", Search engine will perform searching in current MPD playlist rather than in music database.
193 .B user_interface = classic/alternative
194 Default user interface used by ncmpcpp at start.
196 .B data_fetching_delay = yes/no
197 If enabled, there will be a 250ms delay between refreshing position in media library or playlist editor and fetching appropriate data from MPD. This limits data fetched from the server and is particularly useful if ncmpcpp is connected to a remote host.
199 .B media_library_primary_tag = artist/date/genre/composer/performer
200 Default tag type for leftmost column in media library.
202 .B default_find_mode = wrapped/normal
203 If set to "wrapped", going from last found position to next will take you to the first one (same goes for the first position and going to previous one), otherwise no actions will be performed.
205 .B default_space_mode = select/add
206 If set to "select", space will select items instead of adding them to playlist (although selecting by space is default and the only one action for space in Playlist).
208 .B default_tag_editor_pattern = TEXT
209 Default pattern used by Tag editor's parser.
211 .B header_visibility = yes/no
212 If enabled, header window will be displayed, otherwise hidden.
214 .B statusbar_visibility = yes/no
215 If enabled, statusbar will be displayed, otherwise hidden.
217 .B titles_visibility = yes/no
218 If enabled, column titles will be displayed, otherwise hidden.
220 .B header_text_scrolling = yes/no
221 If enabled, text in header window will scroll if its length is longer then actual screen width, otherwise it won't.
223 .B cyclic_scrolling = yes/no
224 If enabled, cyclic scrolling is used (e.g. if you press down arrow being at the end of list, it'll take you to the beginning)
226 .B lines_scrolled = NUMBER
227 Number of lines that are scrolled with mouse wheel.
229 .B follow_now_playing_lyrics = yes/no
230 If enabled, lyrics will be switched at song's change to currently playing one's (Note: this works only if you are viewing lyrics of item from Playlist).
232 .B fetch_lyrics_for_current_song_in_background = yes/no
233 If enabled, each time song changes lyrics fetcher will be automatically run in background in attempt to download lyrics for currently playing song.
235 .B store_lyrics_in_song_dir = yes/no
236 If enabled, lyrics will be saved in song's directory, otherwise in ~/.lyrics. Note that it needs properly set mpd_music_dir.
238 .B generate_win32_compatible_filenames = yes/no
239 If set to yes, filenames generated by ncmpcpp (with tag editor, for lyrics, artists etc.) will not contain the following characters: \\?*:|"<> - otherwise only slash (/) will not be used.
241 .B allow_for_physical_item_deletion = yes/no
242 If set to yes, it will be possible to physically delete files and directories from the disk in the browser.
244 .B lastfm_preferred_language = ISO 639 alpha-2 language code
245 If set, ncmpcpp will try to get info from last.fm in language you set and if it fails, it will fall back to english. Otherwise it will use english the first time.
247 .B space_add_mode = add_remove/always_add
248 If set to add_remove, pressing space on item which is already in playlist will remove it, otherwise add it again.
250 .B show_hidden_files_in_local_browser = yes/no
251 Trigger for displaying in local browser files and directories that begin with '.'
253 .B screen_switcher_mode = SWITCHER_MODE
254 If set to "previous", key_screen_switcher will switch between current and last used screen. If set to "screen1,...screenN" (a list of screens) it will switch between them in a sequence. Syntax clarification can be found in example config file.
256 .B startup_screen = SCREEN_NAME
257 Screen that has to be displayed at start (playlist by default).
259 .B locked_screen_width_part = 20-80
260 If you want to lock a screen, ncmpcpp asks for % of locked screen's width to be reserved before that and provides a default value, which is the one you can set here.
262 .B ask_for_locked_screen_width_part = yes/no
263 If enabled, ncmpcpp will ask for % of locked screen's width each time you want to lock a screen. If you disable that, it'll silently attempt to use default value.
265 .B jump_to_now_playing_song_at_start = yes/no
266 If enabled, ncmpcpp will jump at start to now playing song if mpd is playing or paused.
268 .B ask_before_clearing_playlists = yes/no
269 If enabled, user will be asked if he really wants to clear the playlist after pressing key responsible for that.
271 .B clock_display_seconds = yes/no
272 If enabled, clock will display time in format hh:mm:ss, otherwise hh:mm.
274 .B display_volume_level = yes/no
275 If enabled, volume level will be displayed in statusbar, otherwise not.
277 .B display_bitrate = yes/no
278 If enabled, bitrate of currently playing song will be displayed in statusbar.
280 .B display_remaining_time = yes/no
281 If enabled, remaining time of currently playing song will be be displayed in statusbar instead of elapsed time.
283 .B regular_expressions = basic/extended
284 Type of currently used regular expressions.
286 .B ignore_leading_the = yes/no
287 If enabled, word "the" at the beginning of tags/filenames/sort format will be ignored while sorting items.
289 .B block_search_constraints_change_if_items_found = yes/no
290 If enabled, fields in Search engine above "Reset" button will be blocked after successful searching, otherwise they won't.
292 .B mouse_support = yes/no
293 If set to yes, mouse support will be enabled.
295 .B mouse_list_scroll_whole_page = yes/no
296 If enabled, mouse wheel will scroll the whole page of item list at a time, otherwise the number of lines specified by lines_scrolled variable.
298 .B empty_tag_marker = TEXT
299 Text that will be displayed, if requested tag is not set.
301 .B tags_separator = TEXT
302 Separator that is placed between tags. Also interpreted by tag editor which splits input string into separate tags using it.
304 .B tag_editor_extended_numeration = yes/no
305 If enabled, tag editor will number tracks using format xx/yy (where xx is the current track and yy is total amount of all numbered tracks), not plain xx.
307 .B media_library_sort_by_mtime = yes/no
308 If enabled, media library will be sorted by modification time. Otherwise lexicographic sorting is used.
310 .B enable_window_title = yes/no
311 If enabled, ncmpcpp will override current window title with its own one.
313 .B search_engine_default_search_mode = MODE_NUMBER
314 Number of default mode used in search engine.
316 .B external_editor = PATH
317 Path to external editor used to edit lyrics.
319 .B use_console_editor = yes/no
320 If your external editor is console application, you need to enable it.
322 .B colors_enabled = yes/no
323 No need to describe it, huh?
325 .B empty_tag_color = COLOR
326 Color of empty tag marker.
328 .B header_window_color = COLOR
329 Color of header window.
331 .B volume_color = COLOR
332 Color of volume state.
334 .B state_line_color = COLOR
335 Color of lines separating header and statusbar from main window.
337 .B state_flags_color = COLOR
338 Color of MPD status flags.
340 .B main_window_color = COLOR
341 Color of main window.
343 .B color1 = COLOR
344 One of colors used in Song info, Tiny tag editor and Search engine.
346 .B color2 = COLOR
347 One of colors used in Song info, Tiny tag editor and Search engine.
349 .B main_window_highlight_color = COLOR
350 Color of main window's highlight.
352 .B progressbar_color = COLOR
353 Color of progressbar.
355 .B progressbar_elapsed_color = COLOR
356 Color of part of progressbar that represents elapsed time.
358 .B statusbar_color = COLOR
359 Color of statusbar.
361 .B alternative_ui_separator_color = COLOR
362 Color of separators used in alternative user interface.
364 .B active_column_color = COLOR
365 Color of active column's highlight.
367 .B visualizer_color = COLOR
368 Color of visualization.
370 .B window_border_color = BORDER
371 Border color of pop-up windows. If set to 'none', no border will be shown.
372 .B active_window_border = COLOR
373 Color of active window's border.
375 .SH "BINDINGS"
376 When ncmpcpp starts, it tries to read user's bindings from ~/.ncmpcpp/bindings file. If no bindings file is found, ncmpcpp uses the defaults. An example bindings file with the default values can be found usually in /usr/share/doc/ncmpcpp (exact location may depend on used distribution or configure prefix).
378 You can view current keybindings by pressing F1.
379 .SH "SONG FORMAT"
381 For song format you can use:
383  %l - length
384  %f - filename
385  %D - directory
386  %a - artist
387  %A - album artist
388  %t - title
389  %b - album
390  %y - date
391  %n - track number (01/12 -> 01)
392  %N - full track info (01/12 -> 01/12)
393  %g - genre
394  %c - composer
395  %p - performer
396  %d - disc
397  %C - comment
398  %P - priority
399  $R - begin right alignment
401 You can also put them in { } and then they will be displayed only if all requested values are available and/or define alternate value with { }|{ } e.g. {%a - %t}|{%f} will check if artist and title tags are available and if they are, display them. Otherwise it'll display filename.
403 \fBNote\fR: If you want to set limit on maximal length of a tag, just put the appropriate number between % and character that defines tag type, e.g. to make album take max. 20 terminal cells, use '%20b'.
405 \fBNote\fR: Format that is similar to "%a - %t" (i.e. without any additional braces) is equal to "{%a - %t}", so if one of the tags is missing, you'll get nothing.
407 Text can have different color than the main window, e.g. if you want length to be green, write $3%l$9.
409 Available values for colors:
411  - 0 - default window color (discards all other colors)
412  - 1 - black
413  - 2 - red
414  - 3 - green
415  - 4 - yellow
416  - 5 - blue
417  - 6 - magenta
418  - 7 - cyan
419  - 8 - white
420  - 9 - end of current color
422 \fBNote\fR: colors can be nested, so if you write $2some$5text$9, it'll disable only usage of blue color and make red the current one.
424 .SH "BUGS"
425 Report bugs on http://www.musicpd.org/mantis/
426 .SH "NOTE"
427 Since MPD uses UTF\-8, ncmpcpp needs to convert characters to the charset used by the local system. If you get character conversion errors while you are running ncmpcpp, you probably need to set up your locale. This is done by setting LANG and LC_ALL/LC_CTYPE environment variables (LC_CTYPE only affects character handling).
428 .SH "HOMEPAGE"
429 -> http://unkart.ovh.org/ncmpcpp
431 .SH "SEE ALSO"
432 mpc(1), mpd(1)