diff options
Diffstat (limited to '')
-rw-r--r-- | ncmpcpp/.local/etc/ncmpcpp/config | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/ncmpcpp/.local/etc/ncmpcpp/config b/ncmpcpp/.local/etc/ncmpcpp/config new file mode 100644 index 0000000..3197663 --- /dev/null +++ b/ncmpcpp/.local/etc/ncmpcpp/config @@ -0,0 +1,124 @@ +ncmpcpp_directory = "~/.local/var/lib/ncmpcpp" +lyrics_directory = "~/.local/var/lib/ncmpcpp/lyrics" + +mpd_host = "/var/lib/mpd/mpd.socket" +#mpd_host = "localhost" +#mpd_port = "6600" +mpd_connection_timeout = "10" +mpd_music_dir = "/media/marisa/music" +mpd_crossfade_time = "0" + +system_encoding = "UTF-8" + +playlist_disable_highlight_delay = "1" +message_delay_time = "1" + +song_window_title_format = "{%a - }{%t}|{%f}" +song_list_format = "{$6%t}|{$2%f}$1 $R{$8%b}$1 {$5%a}" +song_columns_list_format = "(20)[red]{a} (30)[cyan]{b} (50)[blue]{t|f}" +song_status_format = "{{$8%a$9{ $b-$/b $6%b$9 {(%y)}} - } '{%t}}|{%f}'" +song_library_format = "{%n - }{%t}|{%f}" + +now_playing_prefix = "$b$1$8>>>$1 " +now_playing_suffix = "$1 $8<<<$1$/b" + +selected_item_prefix = "$0" +selected_item_suffix = "$9" +modified_item_prefix = "$3> $9" + +browser_playlist_prefix = "$2playlist$9 " +browser_sort_format = "{%a - }{%t}|{%f} {(%l)}" + +playlist_show_mpd_host = "no" +playlist_show_remaining_time = "no" +playlist_shorten_total_times = "no" +playlist_separate_albums = "no" + +playlist_display_mode = "classic" +browser_display_mode = "classic" +search_engine_display_mode = "classic" +playlist_editor_display_mode = "classic" + +incremental_seeking = "yes" +seek_time = "1" + +volume_change_step = "5" + +autocenter_mode = "yes" +centered_cursor = "yes" + +progressbar_look = "->-" + +default_place_to_search_in = "database" +search_engine_default_search_mode = "1" +data_fetching_delay = "no" +media_library_primary_tag = "album_artist" +browser_sort_mode = "name" +default_find_mode = "wrapped" +default_tag_editor_pattern = "%n - %t" +empty_tag_marker = "<blank>" +tags_separator = " | " +tag_editor_extended_numeration = "yes" +media_library_sort_by_mtime = "no" +regular_expressions = "none" +block_search_constraints_change_if_items_found = "yes" + +ignore_leading_the = "yes" + +enable_window_title = "no" + +header_visibility = "no" +statusbar_visibility = "no" +titles_visibility = "no" + +display_volume_level = "no" +display_bitrate = "no" +display_remaining_time = "no" + +cyclic_scrolling = "yes" +lines_scrolled = "1" + +follow_now_playing_lyrics = "no" +fetch_lyrics_for_current_song_in_background = "no" +store_lyrics_in_song_dir = "no" + +generate_win32_compatible_filenames = "yes" +allow_for_physical_item_deletion = "no" +show_hidden_files_in_local_browser = "no" + +screen_switcher_mode = "playlist, browser" +startup_screen = "playlist" +startup_slave_screen = "" +startup_slave_screen_focus = "no" +locked_screen_width_part = "50" +ask_for_locked_screen_width_part = "yes" + +jump_to_now_playing_song_at_start = "no" + +ask_before_clearing_playlists = "no" + +clock_display_seconds = "no" + +mouse_support = "no" + +external_editor = "vim" +use_console_editor = "yes" + +colors_enabled = "yes" +discard_colors_if_item_is_selected = "yes" + +empty_tag_color = "cyan" +header_window_color = "cyan" +volume_color = "cyan" +state_line_color = "cyan" +state_flags_color = "green" +main_window_color = "blue" +color1 = "cyan" +color2 = "red" +progressbar_color = "cyan" +progressbar_elapsed_color = "white" +statusbar_color = "yellow" +window_border_color = "green" +active_window_border = "red" + +# vim: filetype=config |