Advertisement
Dobbie03

ncmpcpp

May 24th, 2025
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.15 KB | None | 0 0
  1. #███╗ ██╗ ██████╗███╗ ███╗██████╗ ██████╗ ██████╗ ██████╗
  2. #████╗ ██║██╔════╝████╗ ████║██╔══██╗██╔════╝ ██╔══██╗██╔══██╗
  3. #██╔██╗ ██║██║ ██╔████╔██║██████╔╝██║ ██████╔╝██████╔╝
  4. #██║╚██╗██║██║ ██║╚██╔╝██║██╔═══╝ ██║ ██╔═══╝ ██╔═══╝
  5. #██║ ╚████║╚██████╗██║ ╚═╝ ██║██║ ╚███████╗██║ ██║
  6. #╚═╝ ╚═══╝ ╚═════╝╚═╝ ╚═╝╚═╝ ╚═════╝╚═╝ ╚═╝
  7. # ███▄ █ ▄████▄ ███▄ ▄███▓ ██▓███ ▄████▄ ██▓███ ██▓███
  8. # ██ ▀█ █ ▒██▀ ▀█ ▓██▒▀█▀ ██▒▓██░ ██▒▒██▀ ▀█ ▓██░ ██▒▓██░ ██▒
  9. # ▓██ ▀█ ██▒▒▓█ ▄ ▓██ ▓██░▓██░ ██▓▒▒▓█ ▄ ▓██░ ██▓▒▓██░ ██▓▒
  10. # ▓██▒ ▐▌██▒▒▓▓▄ ▄██▒▒██ ▒██ ▒██▄█▓▒ ▒▒▓▓▄ ▄██▒▒██▄█▓▒ ▒▒██▄█▓▒ ▒
  11. # ▒██░ ▓██░▒ ▓███▀ ░▒██▒ ░██▒▒██▒ ░ ░▒ ▓███▀ ░▒██▒ ░ ░▒██▒ ░ ░
  12. # ░ ▒░ ▒ ▒ ░ ░▒ ▒ ░░ ▒░ ░ ░▒▓▒░ ░ ░░ ░▒ ▒ ░▒▓▒░ ░ ░▒▓▒░ ░ ░
  13. # ░ ░░ ░ ▒░ ░ ▒ ░ ░ ░░▒ ░ ░ ▒ ░▒ ░ ░▒ ░
  14.  
  15.  
  16. # MPD Settings ..
  17. mpd_music_dir = "/opt/Music/"
  18.  
  19. # Display ..
  20.  
  21. alternative_header_first_line_format = "$5{$b%t$/b}$9"
  22. #alternative_header_first_line_format = "{$5%t$/b}"
  23. alternative_header_second_line_format = "$3by $7{$b%a$/b}$9 $3from $7{$b%b$/b}$9 $5{(%y)}"
  24.  
  25. song_list_format = "♫ $2%n$(end) $9 $3%a$(end) $(245)-$9 $(246)%t$9 $R{ $5%y$9}$(end) $(246)%lq$(end)"
  26.  
  27. #song_columns_list_format ="(4)[red]{n} (20)[cyan]{a} (45)[blue]{t} (20)[white]{b} (5)[cyan]{y} (7)[magenta]{l}"
  28. song_columns_list_format ="(3f)[red]{n} (3f)[246]{} (35)[white]{t} (18)[blue]{a} (30)[green]{b} (5f)[yellow]{d} (5f)[red]{y} (7f)[magenta]{l}"
  29.  
  30.  
  31. #song_status_format = "$b $8%A $8•$4• $4%n $4•$3• %t $3•$5• $5%b $5•$7• $7%l $5•$2• $2%y $2•$8• %g" (bold)
  32. song_status_format = "$8%A $8•$4• $4%n $4•$3• %t $3•$5• $5%b $5•$7• $7%l $5•$2• $2%y $2•$8• %g" (regular)
  33. #song_status_format = "{$b$7# $2 $7$8 %b $7 $8}|{$b$7[$8      $7] $2 $7$8 %f $7 $8}"
  34.  
  35. #song_list_format = " $2%n $5%a $8%t $R$5%b $7%y $6%l"
  36.  
  37. #visualizer_color = blue, cyan, green, yellow, magenta, red
  38.  
  39. #playlist_display_mode = "classic" (classic/columns)
  40. playlist_display_mode = "columns" (classic/columns)
  41. browser_display_mode = "columns" (classic/columns)
  42. search_engine_display_mode = "columns" (classic/columns)
  43.  
  44. # Colours
  45. ## - 0 - default window color (discards all other colors)
  46. ## - 1 - black
  47. ## - 2 - red
  48. ## - 3 - green
  49. ## - 4 - yellow
  50. ## - 5 - blue
  51. ## - 6 - magenta
  52. ## - 7 - cyan
  53. ## - 8 - white
  54. ## - 9 - end of current color
  55. ## - b - bold text
  56. ## - u - underline text
  57. ## - i - italic text
  58. ## - r - reverse colors
  59. ## - a - use alternative character set
  60.  
  61. # Items
  62. ## %l - length
  63. ## %f - filename
  64. ## %D - directory
  65. ## %a - artist
  66. ## %A - album artist
  67. ## %t - title
  68. ## %b - album
  69. ## %y - date
  70. ## %n - track number (01/12 -> 01)
  71. ## %N - full track info (01/12 -> 01/12)
  72. ## %g - genre
  73. ## %c - composer
  74. ## %p - performer
  75. ## %d - disc
  76. ## %C - comment
  77. ## %P - priority
  78. ## $R - begin right alignment
  79.  
  80. # Now Playing ..
  81.  
  82. #now_playing_prefix = "$b$8»$2»$4»$3» "
  83. #now_playing_prefix =♫
  84. #now_playing_suffix = "$8$/b"
  85. #now_playing_prefix = "$b$2⟩$3⟩ "
  86. #now_playing_suffix = "$8$/b"
  87. #now_playing_prefix = $b$(white)
  88. #now_playing_suffix = $/r$/b$(end)
  89. now_playing_prefix = $b
  90. now_playing_suffix = $/b
  91.  
  92. # Playlist ..
  93.  
  94. browser_playlist_prefix = "$2 ♥ $5 "
  95.  
  96.  
  97. # Delays ..
  98.  
  99. playlist_disable_highlight_delay = "1"
  100. #playlist_disable_highlight_delay = "0"
  101. message_delay_time= "1"
  102.  
  103.  
  104. # Progress Bar ..
  105.  
  106. progressbar_look = "─╼"
  107. #progressbar_look = "▒▓░"
  108. #progressbar_look ="─⊙┄"
  109. #progressbar_look = "┅┅┄"
  110. #progressbar_look = "─➞─"
  111. #progressbar_look = "─┅─"
  112. #progressbar_look = "━━━"
  113. #progressbar_look = "≈►·"
  114. #progressbar_look = "→→"
  115.  
  116.  
  117. # Colors ..
  118.  
  119. colors_enabled = yes
  120. empty_tag_color = red
  121. statusbar_color = blue
  122. state_line_color = black
  123. state_flags_color = default
  124. main_window_color = blue
  125. header_window_color = white
  126. alternative_ui_separator_color = black
  127. window_border_color = green
  128. active_window_border = red
  129. volume_color = default
  130. progressbar_color = black
  131. progressbar_elapsed_color = blue
  132. statusbar_time_color = blue
  133. player_state_color = default
  134.  
  135. display_bitrate = "yes"
  136. autocenter_mode = "yes"
  137. centered_cursor = "yes"
  138. titles_visibility = "no"
  139. enable_window_title = "yes"
  140. statusbar_visibility = "yes"
  141. #empty_tag_marker=" -- ‼ -- "
  142. empty_tag_marker=""
  143. mouse_support = "yes"
  144. header_visibility = "no"
  145. display_remaining_time = "no"
  146. ask_before_clearing_playlists = "yes"
  147. discard_colors_if_item_is_selected = "yes"
  148.  
  149. user_interface = "classic" (classic/alternative)
  150.  
  151. default_find_mode = "wrapped"
  152. lyrics_directory = "~/.lyrics"
  153. lyrics_fetchers = genius, justsomelyrics, jahlyrics, plyrics, tekstowo, internet
  154. follow_now_playing_lyrics = "yes"
  155. store_lyrics_in_song_dir = "no"
  156. ignore_leading_the = "yes"
  157. lines_scrolled = 1
  158. mouse_list_scroll_whole_page = no
  159. show_hidden_files_in_local_browser = no
  160.  
  161. startup_screen = playlist
  162. execute_on_song_change="~/.bin/np"
  163.  
  164. connected_message_on_startup = no
  165. playlist_separate_albums = no
  166. allow_for_physical_item_deletion = no
  167. #current_item_prefix = "$/b$b[ $7$8 ]$/b "
  168.  
  169. #now_playing_prefix = "$b$8 "
  170. #now_playing_suffix = "$/b$8 $b[ $3$8 ]$/b"
  171.  
  172.  
  173. # Visualizer ..
  174.  
  175. visualizer_in_stereo = "yes"
  176. #buffer_time = "100000"
  177. #visualizer_output_name = "Pipe"
  178. visualizer_data_source = /tmp/mpd.fifo
  179. visualizer_type = ellipse
  180. ##visualizer_type = "wave_filled"
  181. #visualizer_type = "spectrum"
  182.  
  183. #visualizer_look = ●▮
  184. visualizer_look = "▉▋"
  185. #visualizer_look = "▋▋"
  186. #visualizer_look = "◆▋"
  187. #visualizer_look = "◈░"
  188. #visualizer_look = "││"
  189. #visualizer_look = "▀▋"
  190. #visualizer_look = "▀○"
  191. #visualizer_look = "█▋"
  192. #visualizer_look = "██"
  193. #visualizer_look = "º|"
  194. #visualizer_look = "▒░"
  195. #visualizer_look = "▋▍"
  196. #visualizer_look = "▋█"
  197. #visualizer_look = "▋█"
  198. #visualizer_look = "▋░"
  199. #visualizer_look = "▋▓"
  200. #visualizer_look = "▋☰"
  201. #visualizer_look = "☰⛆"
  202. #visualizer_look = "☰▓"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement