config (1881B)
1 # ░█▀█░█▀▀░█▄█░█▀█░█▀▀░█▀█░█▀█░░ 2 # ░█░█░█░░░█░█░█▀▀░█░░░█▀▀░█▀▀░░ 3 # ░▀░▀░▀▀▀░▀░▀░▀░░░▀▀▀░▀░░░▀░░░░ 4 5 # setup 6 ncmpcpp_directory = "~/.ncmpcpp" 7 external_editor = "/usr/bin/vim" 8 9 # mpd settings 10 mpd_crossfade_time = "3" 11 mpd_music_dir = "~/lib/music" 12 mpd_host = "127.0.0.1" 13 mpd_port = "6601" 14 15 # visualizer 16 visualizer_look = "▒░" 17 visualizer_color = "cyan,blue,magenta,yellow" 18 visualizer_in_stereo = "yes" 19 visualizer_fifo_path = "~/.mpd/mpd.fifo" 20 visualizer_sync_interval = "10" 21 visualizer_output_name = "mpd spectrum" 22 visualizer_type = "spectrum" 23 24 # display settings 25 song_columns_list_format = "(3f)[white]{n} (40)[white]{t|f} (25)[white]{a} (30)[white]{b} (4f)[white]{l}" 26 song_status_format = "$7%a $6$b> $6%t $6$b> $2%b$6" 27 statusbar_color = "white" 28 main_window_color = "cyan" 29 header_visibility = "no" 30 statusbar_visibility = "no" 31 colors_enabled = "yes" 32 now_playing_prefix = "$2$b" 33 now_playing_suffix = "$9$/b" 34 autocenter_mode = "yes" 35 centered_cursor = "yes" 36 progressbar_color = "black" 37 progressbar_elapsed_color = "blue" 38 progressbar_look = "▒▓░" 39 titles_visibility = "no" 40 mouse_support = "no" 41 discard_colors_if_item_is_selected = "yes" 42 user_interface = "alternative" 43 playlist_display_mode = "columns" 44 search_engine_display_mode = "columns" 45 46 # cheat sheet 47 # %l - length 48 # %f - filename 49 # %D - directory 50 # %a - artist 51 # %t - title 52 # %b - album 53 # %y - year 54 # %n - track number (01/12 -> 01) 55 # %N - full track info (01/12 -> 01/12) 56 # %g - genre 57 # %c - composer 58 # %p - performer 59 # %d - disc 60 # %C - comment 61 # $R - begin right alignment 62 # colors 63 # $0 - default window color 64 # $1 - black 65 # $2 - red 66 # $3 - green 67 # $4 - yellow 68 # $5 - blue 69 # $6 - magenta 70 # $7 - cyan 71 # $8 - white 72 # $9 - end of current color