You are not logged in.
Olson - please don't cross post: https://wiki.archlinux.org/index.php/Fo … ss-Posting
Also this thread is for screenshots, not support...
noted, thank you
who needs a de?
last.fm
Offline
Nice taste dude.
Mine:
# ------------------------------------------------------
# file: $HOME/.ncmpcpp/config
# author: Ramon Solis - http://cyb3rpunk.wordpress.com
# modified: January 2010
# vim:fenc=utf-8:nu:ai:si:et:ts=4:sw=4:ft=txt:
# ------------------------------------------------------
# ---
# MPD
# ---
mpd_host = "127.0.0.1"
mpd_port = "6600"
mpd_music_dir = "/home/ramonoid/Musica/"
mpd_connection_timeout = "5"
mpd_crossfade_time = "5"
# ----
# Bars
# ----
statusbar_visibility = "yes"
header_visibility = "no"
# ------
# Delays
# ------
playlist_disable_highlight_delay = "1"
message_delay_time = "1"
# ------
# Format
# ------
song_list_format = "$7[$4%n$7]$9 $7[$9$3%l$7]$9 $1|$9 $7%a$9 $1|$9 $2%t$9 $R $5%b$9"
song_columns_list_format = "(35)[black]{t} (20)[black]{a} (6)[black]{l} (30)[black]{b} "
song_window_title_format = "{%a - }{%t}|{%f}"
song_status_format = "$b{$2%a$9 $3-$9 }$6{%t$9}"
now_playing_prefix = "$b$5♫ $7>$6>$5> "
now_playing_suffix = "$/b"
# ------
# Colors
# ------
colors_enabled = "yes"
color1 = "red"
color2 = "black"
empty_tag_color = "red"
main_window_color = "cyan"
main_window_highlight_color = "blue"
active_column_color = "green"
active_window_border = "black"
window_border_color = "red"
statusbar_color = "yellow"
header_window_color = "magenta"
# ------------
# Progress bar
# ------------
progressbar_color = "cyan"
progressbar_look = "(("
# ----
# Misc
# ----
playlist_separate_albums = "no"
cyclic_scrolling = "yes"
fancy_scrolling = "yes"
display_screens_numbers_on_start = "no"
regular_expressions = "extended"
external_editor = "/usr/bin/vim"
ignore_leading_the = "no"
# lyrics_database = "1" # 1 - lyricwiki.org | 2 - lyricsplugin.com
clock_display_seconds = "yes"
display_bitrate = "yes"
state_line_color = "red"
state_flags_color = "blue"
state_window_color ="blue"
empty_tag_marker = "<empty>"
jump_to_now_playing_song_at_start = "yes"
ask_before_clearing_main_playlist = "no"
enable_window_title = "yes"
display_remaining_time = "no"
display_volume_level = "yes"
volume_color = "red"
# ----------
# Visualizer
# ----------
visualizer_fifo_path = "/home/ramonoid/.mpd/mpd.fifo"
visualizer_output_name = "visual"
visualizer_sync_interval = "30"
visualizer_type = "spectrum" (spectrum/wave)
visualizer_color = "blue"
arst
Offline
I've been working long and (more or less) hard on this, and I think I'm finally kind of satisfied with it.
Screenshot
http://ompldr.org/tN3A1bg[...]
The font is a bit unreadable but the colors choose is flawless
EDIT:
#=================================#
#|| ||#
#|| N C M P C P P C O N F I G ||#
#|| ||#
#=================================#
##
##### connection settings #####
## set it in order to make tag editor and renaming files work properly
mpd_host = "localhost"
mpd_port = "6600"
mpd_music_dir = "/media/Data/Music"
mpd_connection_timeout = "5"
mpd_crossfade_time = "1"
mpd_communication_mode = "notifications" (polling/notifications)
##### music visualizer #####
##
## Note: In order to make music visualizer work you'll
## need to use mpd fifo output, whose format parameter
## has to be set to 44100:16:1. Example configuration:
## (it has to be put into mpd.conf)
##
## audio_output {
## type "fifo"
## name "My FIFO"
## path "/tmp/mpd.fifo"
## format "44100:16:1"
## }
##
visualizer_fifo_path = "/tmp/mpd.fifo"
##
## Note: Below parameter is needed for ncmpcpp
## to determine which output provides data for
## visualizer and thus allow syncing between
## visualization and sound as currently there
## are some problems with it.
##
visualizer_output_name = "FIFO"
##
## Note: Below parameter defines how often ncmpcpp
## has to "synchronize" visualizer and audio outputs.
## 30 seconds is optimal value, but if you experience
## synchronization problems, set it to lower value.
## Keep in mind that sane values start with >=10.
##
visualizer_sync_interval = "25"
##
## Note: To enable spectrum frequency visualization
## you need to compile ncmpcpp with fftw3 support.
##
visualizer_type = "wave" (spectrum/wave)
##### system encoding #####
##
## ncmpcpp should detect your charset encoding
## but if it failed to do so, you can specify
## charset encoding you are using here.
##
## Note: You can see whether your ncmpcpp build
## supports charset detection by checking output
## of `ncmpcpp --version`.
##
## Note: Since MPD uses utf8 by default, setting
## this option makes sense only if your encoding
## is different.
##
system_encoding = ""
##### delays #####
## delay after playlist highlighting will be disabled (0 = don't disable)
playlist_disable_highlight_delay = "5"
## defines how long various messages are supposed to be visible
message_delay_time = "4"
##### song format #####
## for song format you can use:
##
## %l - length
## %f - filename
## %D - directory
## %a - artist
## %A - album artist
## %t - title
## %b - album
## %y - year
## %n - track number (01/12 -> 01)
## %N - full track info (01/12 -> 01/12)
## %g - genre
## %c - composer
## %p - performer
## %d - disc
## %C - comment
## $R - begin right alignment
##
## you can also put them in { } and then it will be displayed
## only if all requested values are available and/or define alternate
## value with { }|{ } eg. {%a - %t}|{%f}
##
## Note: 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.
##
## text can also have different color than the main window has,
## eg. if you want length to be green, write $3%l$9
##
## available values:
##
## - 0 - default window color (discards all other colors)
## - 1 - black
## - 2 - red
## - 3 - green
## - 4 - yellow
## - 5 - blue
## - 6 - magenta
## - 7 - cyan
## - 8 - white
## - 9 - end of current color
##
## Note: colors can be nested.
##
song_list_format = "{%a - }{%t}|{$8%f$9}$R{$3(%l)$9}"
song_status_format = "{{%a{ \"%b\"{ (%y)}} - }{%t}}|{%f}"
song_library_format = "{%n - }{%t}|{%f}"
tag_editor_album_format = "{(%y) }%b"
##
## Note: Below variables are for alternative version of user's interface.
## Their syntax supports all tags and colors listed above plus some extra
## markers used for text attributes. They are followed by character '$'.
## After that you can put:
##
## - b - bold text
## - u - underline text
## - r - reverse colors
## - a - use alternative character set
##
## If you don't want to use an attribute anymore, just put it again, but
## this time insert character '/' between '$' and attribute character,
## e.g. {$b%t$/b}|{$r%f$/r} will display bolded title tag or filename
## with reversed colors.
##
#
alternative_header_first_line_format = "$b$1$aqqu$/a$9 {%t}|{%f} $1$atqq$/a$9$/b"
#
alternative_header_second_line_format = "{{$4%a$9}{ - $7%b$9}}|{%D}"
#
##
## Note: Below variables also supports
## text attributes listed above.
##
#
now_playing_prefix = "$b$u"
now_playing_suffix = "$/b$/u"
browser_playlist_prefix = "$2playlist$9 "
selected_item_prefix = "$6"
selected_item_suffix = "$9"
## colors are not supported for below variable
song_window_title_format = "{%a - }{%t}|{%f}"
##### columns settings #####
##
## syntax of song columns list format is "column column etc."
##
## - syntax for each column is:
##
## (width of column)[column's color]{displayed tag}
##
## Note: Width is by default in %, if you want a column to
## have fixed size, add 'f' after the value, e.g. (10)[white]{a}
## will be the column that take 10% of screen (so the real column's
## width will depend on actual screen size), whereas (10f)[white]{a}
## will take 10 terminal cells, no matter how wide the screen is.
##
## - color is optional (if you want the default one, type [])
##
## Note: You can give a column additional attributes by putting appropriate
## character after displayed tag character. Available attributes are:
##
## - r - column will be right aligned
## - E - if tag is empty, empty tag marker won't be displayed
##
## You can also:
##
## - give a column custom name by putting it after attributes,
## separated with character ':', e.g. {lr:Length} gives you
## right aligned column of lengths named "Length".
##
## - define sequence of tags, that have to be displayed in case
## predecessor is empty in a way similar to the one in classic
## song format, i.e. using '|' character, e.g. {a|c|p:Owner}
## creates column named "Owner" that tries to display artist
## tag and then composer and performter if previous ones are
## not available.
##
song_columns_list_format = "(7f)[green]{l} (40)[cyan]{t|f} (25)[blue]{a} (30)[green]{b}"
##### various settings #####
#
##
## Note: Custom command that will be executed each
## time song changes. Useful for notifications etc.
##
## Attention: It doesn't support song format anymore.
## Use `ncmpcpp --now-playing SONG_FORMAT` instead.
##
execute_on_song_change = ""
playlist_show_remaining_time = "no"
playlist_shorten_total_times = "yes"
playlist_separate_albums = "no"
playlist_display_mode = "columns" (classic/columns)
browser_display_mode = "columns" (classic/columns)
search_engine_display_mode = "classic" (classic/columns)
discard_colors_if_item_is_selected = "yes"
incremental_seeking = "yes"
seek_time = "1"
autocenter_mode = "yes"
centered_cursor = "yes"
progressbar_look = "//"
default_place_to_search_in = "database" (database/playlist)
user_interface = "alternative" (classic/alternative)
media_library_left_column = "a" (possible values: a,y,g,c,p, legend above)
default_find_mode = "wrapped" (wrapped/normal)
default_space_mode = "add" (add/select)
default_tag_editor_left_col = "albums" (albums/dirs)
default_tag_editor_pattern = "%n - %t"
header_visibility = "yes"
statusbar_visibility = "yes"
header_text_scrolling = "yes"
fancy_scrolling = "yes"
cyclic_scrolling = "no"
lines_scrolled = "2"
follow_now_playing_lyrics = "no"
ncmpc_like_songs_adding = "yes" (enabled - add/remove, disabled - always add)
show_hidden_files_in_local_browser = "no"
display_screens_numbers_on_start = "yes"
##
## How shall key_screen_switcher work?
##
## - "previous" - switch between current and last used screen
## - "sequence: 2 -> 9 -> 5" - switch between given sequence of screens.
##
## Screen numbers you can use after 'sequence' keyword are:
##
## - 1 - help
## - 2 - playlist
## - 3 - browser
## - 4 - search engine
## - 5 - media library
## - 6 - playlist editor
## - 7 - tag editor
## - 8 - outputs
## - 9 - visualizer
## - 10 - clock
##
## As you can see, above example will switch between
## playlist, visualizer and media library screens.
##
screen_switcher_mode = "sequence: 2 -> 3"
##
## Note: You can define startup screen for ncmpcpp
## by choosing screen number from the list above.
##
startup_screen = "2"
jump_to_now_playing_song_at_start = "yes"
ask_before_clearing_main_playlist = "no"
clock_display_seconds = "yes"
display_volume_level = "yes"
display_bitrate = "no"
display_remaining_time = "no"
regular_expressions = "basic" (basic/extended)
##
## Note: If below is enabled, ncmpcpp will ignore leading
## "The" word while sorting items in browser, tags in
## media library, etc.
##
ignore_leading_the = "no"
block_search_constraints_change_if_items_found = "yes"
mouse_support = "yes"
mouse_list_scroll_whole_page = "yes"
empty_tag_marker = "<empty>"
tag_editor_extended_numeration = "no"
media_library_display_date = "yes"
media_library_disable_two_column_mode = "no"
enable_window_title = "yes"
##
## Note: You can choose default search mode for search
## engine. Available modes are:
##
## - 1 - use mpd built-in searching (no regexes, pattern matching)
## - 2 - use ncmpcpp searching (pattern matching with support for regexes,
## but if your mpd is on a remote machine, downloading big database
## to process it can take a while
## - 3 - match only exact values (this mode uses mpd function for searching
## in database and local one for searching in current playlist)
##
#
#search_engine_default_search_mode = "1"
#
##
## Note: Below variables can allow you to physically
## remove files and directories from your hdd using
## ncmpcpp's browser screen.
##
allow_physical_files_deletion = "no"
allow_physical_directories_deletion = "no"
##### lyrics support #####
##
## supported lyrics databases:
##
## - 1 - lyricsplugin.com
##
lyrics_database = "1"
external_editor = "vim"
use_console_editor = "yes" (set to yes, if your editor is console app)
##### colors definitions #####
colors_enabled = "yes"
empty_tag_color = "black"
header_window_color = "blue"
volume_color = "blue"
state_line_color = "black"
state_flags_color = "cyan"
main_window_color = "blue"
color1 = "blue"
color2 = "cyan"
main_window_highlight_color = "cyan"
progressbar_color = "cyan"
statusbar_color = "blue"
alternative_ui_separator_color = "blue"
active_column_color = "red"
window_border_color = "green"
active_window_border = "red"
Last edited by SuNjACk (2011-03-23 21:33:37)
Offline
###################################################
## ~/.ncmpcpp/config
###################################################
##### connection settings #####
mpd_host = "localhost"
mpd_music_dir = "/home/[myname]/music"
mpd_connection_timeout = "5"
mpd_crossfade_time = "5"
##### delays #####
playlist_disable_highlight_delay = "5"
##### song format #####
song_status_format = "%a \"%b\" - {%t}|{%f}"
song_library_format = "{%n - }{%t}|{%f}"
now_playing_prefix = "$r$b"
now_playing_suffix = "$/b$/r"
song_columns_list_format = "(7f)[white]{l} (25)[white]{a} (40)[]{b} (30)[white]{t}"
##### various settings #####
execute_on_song_change = ""
playlist_shorten_total_times = "yes"
playlist_display_mode = "columns" (classic/columns)
browser_display_mode = "columns" (classic/columns)
discard_colors_if_item_is_selected = "yes"
incremental_seeking = "yes"
seek_time = "1"
autocenter_mode = "no"
centered_cursor = "yes"
progressbar_look = "=>"
media_library_left_column = "a" (possible values: a,y,g,c,p, legend above)
default_find_mode = "wrapped" (wrapped/normal)
default_space_mode = "add" (add/select)
default_tag_editor_left_col = "albums" (albums/dirs)
default_tag_editor_pattern = "%n - %t"
header_visibility = "yes"
statusbar_visibility = "yes"
titles_visibility = "yes"
header_text_scrolling = "yes"
fancy_scrolling = "yes"
cyclic_scrolling = "yes"
lines_scrolled = "2"
startup_screen = "2"
jump_to_now_playing_song_at_start = "yes"
ask_before_clearing_main_playlist = "no"
ignore_leading_the = "yes"
mouse_support = "no"
mouse_list_scroll_whole_page = "yes"
##### colors definitions #####
colors_enabled = "yes"
empty_tag_color = "cyan"
main_window_color = "white"
main_window_highlight_color = "white"
progressbar_color = "magenta"
active_column_color = "green"
Last edited by the sad clown (2011-04-10 03:31:35)
I laugh, yet the joke is on me
Offline
I got this one off somebody else years ago - as apparent from the comments - have only updated the syntax to match ncmpcpp changes.
#################################################
## BalanceST's Archy ncmpcpp configuration ##
## Nicked from http://lua.pastey.net/101347 ##
## Updated by madchine ##
## Copy to ~/.ncmpcpprc ##
#################################################
#
##### connection settings #####
#
## set it in order to make tag editor and renaming files work properly
#
#mpd_music_dir = "/home/seynthantx/Music/"
#mpd_connection_timeout = "5"
#mpd_crossfade_time = "3"
mpd_host = "192.168.1.65"
##### delays #####
## delay after playlist highlighting will be disabled (0 = don't disable)
playlist_disable_highlight_delay = "0"
## defines how long various messages are supposed to be visible
#message_delay_time = "4"
##### song format #####
##
## for song format you can use:
##
## %l - length
## %f - short filename
## %F - full filename
## %a - artist
## %t - title
## %b - album
## %y - year
## %n - track number
## %g - genre
## %c - composer
## %p - performer
## %d - disc
## %C - comment
## %r - begin right align
##
## you can also put them in { } and then it will be displayed
## only if all requested values are available and/or define alternate
## value with { }|{ } eg. {%a - %t}|{%f}
##
## text can also have different color than the main window has,
## eg. if you want length to have other color, write [.color]%t[/color]
##
## available colors:
##
## - black
## - red
## - green
## - yellow
## - blue
## - magenta
## - blue
## - white
##
#song_list_format = "{[.white](%l)[/white] }{%a - }{%t}|{[.white]%f[/white]}"
song_list_format = "{$8(%l)$9 }{%a - }{%t}|{$8%f$9}"
song_library_format = "{%n - }{%t}|{%f}"
tag_editor_album_format = "{(%y) }%b"
browser_playlist_prefix = "$8playlist$9 "
selected_item_prefix = "$5"
selected_item_suffix = "$9"
## colors are not supported for below veriables
#song_status_format = "{(%l) }{%a - }{%t}|{%f}"
#song_window_title_format = "{%a - }{%t}|{%f}"
##### columns settings #####
## syntax of song columns list format is "column column etc."
## - syntax for each column is:
## (width of column in %)[column's color]{displayed tag}
## - color is optional (if it's not present, default window color will be used)
song_columns_list_format = "(9)[white]{l} (20)[blue]{a} (35)[white]{b} (53)[blue]{t}"
##### various settings #####
playlist_display_mode = "columns" (classic/columns)
#incremental_seeking = "yes"
#autocenter_mode = "no"
#repeat_one_mode = "no"
#default_find_mode = "wrapped" (wrapped/normal)
#default_space_mode = "add" (add/select)
#default_tag_editor_left_col = "albums" (albums/dirs)
#default_tag_editor_pattern = "%n - %t"
header_visibility = "yes"
statusbar_visibility = "yes"
fancy_scrolling = "yes"
#follow_now_playing_lyrics = "no"
#enable_window_title = "yes"
##### colors definitions #####
colors_enabled = "yes"
empty_tag_color = "white"
header_window_color = "white"
volume_color = "white"
state_line_color = "blue"
state_flags_color = "white"
main_window_color = "blue"
main_window_highlight_color = "white"
progressbar_color = "blue"
statusbar_color = "white"
active_column_color = "white"
window_border_color = "white"
active_window_border = "magenta"
Last edited by madchine (2011-04-21 10:06:01)
Offline
nice.... can you share your urxvt color theme?
Offline
mpd_host = "localhost"
mpd_port = "6600"
mpd_music_dir = "/home/meyithi/Music"
alternative_header_first_line_format = "$b$1$aqqu$/a$9 $5{%t}|{%f}$9 $1$atqq$/a$9$/b"
alternative_header_second_line_format = "$b$6%a $1-$9 %b $1-$9 %y$9$/b"
song_columns_list_format = "(6f)[magenta]{l} (30y)[blue]{t|f} (30)[magenta]{a} (30)[blue]{b} (6f)[magenta]{yr}"
playlist_display_mode = "columns" (classic/columns)
browser_display_mode = "columns" (classic/columns)
search_engine_display_mode = "columns" (classic/columns)
progressbar_look = "=>-"
user_interface = "alternative" (classic/alternative)
header_visibility = "yes"
statusbar_visibility = "yes"
titles_visibility = "no"
header_text_scrolling = "yes"
fancy_scrolling = "yes"
colors_enabled = "yes"
empty_tag_color = "blue"
header_window_color = "blue"
volume_color = "blue"
state_line_color = "blue"
state_flags_color = "blue"
main_window_color = "magenta"
color1 = "blue"
color2 = "white"
main_window_highlight_color = "blue"
progressbar_color = "blue"
statusbar_color = "blue"
alternative_ui_separator_color = "black"
active_column_color = "magenta""
active_window_border = "blue"
window_border_color = "blue"
Offline
####################################################
## dipilibupap@gmail.com
## Largely Inspire By crshd and Him .
##################################################### Playlist
song_columns_list_format = "(6f)[blue]{l} (25)[red]{a} (40)[green]{t|f} (30)[yellow]{b}"
now_playing_prefix = "$b$5»$7»$1» "
now_playing_suffix = "$/b"
playlist_display_mode = "columns" (classic/columns)
autocenter_mode = "yes"
centered_cursor = "yes"# Bars
song_status_format = "$2%a $1• $3%t $1• $4%b {(Disc %d) }$1• $5%y$1"
progressbar_look = "─╼·"
titles_visibility = "no"# Browser
browser_playlist_prefix = "$2plist »$9 "
browser_display_mode = "columns" (classic/columns)# Colors
discard_colors_if_item_is_selected = "yes"
header_window_color = "black"
volume_color = "cyan"
state_line_color = "black"
state_flags_color = "yellow"
main_window_color = "white"
color1 = "default"
color2 = "green"
main_window_highlight_color = "red"
progressbar_color = "yellow"
statusbar_color = "black"
active_column_color = "red"
visualizer_color = "yellow"# Othersl
song_window_title_format = "MPD: {%a > }{%t}{ [%b{ Disc %d}]}|{%f}"
search_engine_display_mode = "columns" (classic/columns)
follow_now_playing_lyrics = "yes"
display_screens_numbers_on_start = "no"
##### colors definitions #####
#
colors_enabled = "yes"
#
# Colors
discard_colors_if_item_is_selected = "yes"
header_window_color = "black"
volume_color = "cyan"
state_line_color = "black"
state_flags_color = "yellow"
main_window_color = "white"
color1 = "default"
color2 = "green"
main_window_highlight_color = "red"
progressbar_color = "yellow"
statusbar_color = "black"
active_column_color = "red"
visualizer_color = "yellow"
song_window_title_format = "MPD: {%a > }{%t}{ [%b{ Disc %d}]}|{%f}"
.Xdefaults are available on Dotshare
http://dotshare.it >> #dotshare@freenode
Offline
Offline
WTF... it's a little puzzling ignore_leading_the = "yes" isn't there by default. But whatever.
hey mr shuttleworth im real happy for u and imma let you finish but i just wanna to say ARCH LINUX IS THE GREATEST DISTRO OF ALL TIME
Offline
White/Magenta to match the AwesomeWM theme
mpd_host = "localhost"
mpd_port = "6600"
mpd_music_dir = "/media/private/Music/"
alternative_header_first_line_format = "$b$1$aqqu$/a$9 {%t}|{%f} $1$atqq$/a$9$/b"
alternative_header_second_line_format = "{{$4$b%a$/b$9}{ - $7%b$9}{ ($4%y$9)}}|{%D}"
song_columns_list_format = "(5f)[white]{l} (20)[magenta]{a} (45)[]{t|f} (30)[white]{b}"
playlist_display_mode = "columns"
browser_display_mode = "classic"
search_engine_display_mode = "classic"
header_visibility = "yes"
statusbar_visibility = "yes"
titles_visibility = "no"
fancy_scrolling = "no"
cyclic_scrolling = "yes"
colors_enabled = "yes"
empty_tag_color = "white"
header_window_color = "default"
volume_color = "default"
state_line_color = "default"
state_flags_color = "default"
main_window_color = "white"
color1 = "white"
color2 = "green"
main_window_highlight_color = "magenta"
progressbar_color = "default"
statusbar_color = "default"
alternative_ui_separator_color = "black"
active_column_color = "blue"
visualizer_color = "yellow"
window_border_color = "green"
active_window_border = "red"
To get something done, a committee should consist of no more than three persons, two of them absent.
--
My Github
Offline
@onearm - what is generating that "now playing" with album cover? Conky?
~/.ncmpcpp/config on my github dotfiles.
Last edited by graysky (2011-12-20 21:01:11)
CPU-optimized Linux-ck packages @ Repo-ck • AUR packages • Zsh and other configs
Offline
@onearm - what is generating that "now playing" with album cover? Conky?
http://s8.postimage.org/hwgsy33w1/shot.jpg
~/.ncmpcpp/config on my github dotfiles.
I think it may be this one:
https://github.com/Donearm/Mpd-Info
Offline
Yep, that's it. I wanted something in pure Lua that would perfectly integrate into AwesomeWM but there was none so I wrote it.
To get something done, a committee should consist of no more than three persons, two of them absent.
--
My Github
Offline
inspired from dipilibupap's config
~/.ncmpcpp/config
## ncmpcpp config
# mpd
mpd_host = "/home/oblique/.mpd/socket"
mpd_music_dir = "~/music"
mpd_connection_timeout = "5"
# playlist
song_columns_list_format = "(7f)[green]{l} (25)[blue]{a} (40)[red]{t|f} (30)[magenta]{b}"
song_list_format = "{$3[%l]$9} {$5%a$9} - {$2%t$9} - {$6%f$9}"
now_playing_prefix = "$b$1» "
now_playing_suffix = "$/b"
playlist_display_mode = "columns" (classic/columns)
autocenter_mode = "yes"
centered_cursor = "yes"
# bars
song_status_format = "$5%a $b$1•$/b $2%t $b$1•$/b $6%b {(Disc %d) }$b$1•$/b $3%y$1"
progressbar_look = "─╼·"
# browser
browser_playlist_prefix = "$2playlist »$9 "
browser_display_mode = "columns" (classic/columns)
# media library
song_library_format = "{%n - }{%t}|{%f}"
media_library_album_format = "{(%y) }%b"
# user interface
user_interface = "alternative" (classic/alternative)
alternative_header_first_line_format = "$b$1$aqqu$/a$9 $3{%t}|{%f}$9 $1$atqq$/a$9$/b"
alternative_header_second_line_format = "$b{{$5%a$9}{ $1-$9 $2%b$9}$/b{ $b$1($9$/b$3%y$9$b$1)$9$/b}}|{%D}"
# others
selected_item_prefix = "$b$2"
selected_item_suffix = "$9$/b"
song_window_title_format = "{%a - }{%t}{ [%b{ Disc %d}]}|{%f}"
search_engine_display_mode = "columns" (classic/columns)
# colors
colors_enabled = "yes"
color1 = "cyan"
color2 = "magenta"
empty_tag_color = "magenta"
header_window_color = "magenta"
volume_color = "magenta"
state_flags_color = "black"
state_line_color = "black"
main_window_color = "cyan"
main_window_highlight_color = "green"
progressbar_color = "black"
alternative_ui_separator_color = "black"
active_column_color = "red"
statusbar_color = "red"
window_border_color = "black"
active_window_border = "red"
# various settings
incremental_seeking = "yes"
seek_time = "1"
default_place_to_search_in = "database" (database/playlist)
media_library_left_column = "a" (possible values: a,y,g,c,p, legend above)
default_find_mode = "wrapped" (wrapped/normal)
default_space_mode = "add" (add/select)
default_tag_editor_left_col = "dirs" (albums/dirs)
default_tag_editor_pattern = "%n - %t"
header_visibility = "yes"
statusbar_visibility = "yes"
titles_visibility = "yes"
fancy_scrolling = "yes"
follow_now_playing_lyrics = "no"
ncmpc_like_songs_adding = "no" (enabled - add/remove, disabled - always add)
enable_window_title = "yes"
display_bitrate = "yes"
~/.Xdefaults
! colors
*background: #101010
*foreground: #66FF66
*cursorColor: #66ff66
!black
*color0: #1c1c1c
*color8: #4d4d4d
!red
*color1: #D81860
*color9: #F00060
!green
*color2: #60FF60
*color10: #70FF70
!yellow
*color3: #f9fd75
*color11: #f9fd75
!blue
*color4: #4695c8
*color12: #4e98c8
!magenta
*color5: #a78edb
*color13: #ae99db
!cyan
*color6: #43afce
*color14: #50b2ce
!white
*color7: #f3ebe2
*color15: #EEEEEC
! darker
!*background: #101010
!*foreground: #66ff66
!*cursorColor: #66ff66
!*color0: #101010
!*color1: #960050
!*color2: #66aa11
!*color3: #cdd24a
!*color4: #30309b
!*color5: #7e40a5
!*color6: #3579a8
!*color7: #9999aa
!*color8: #303030
!*color9: #ff0090
!*color10: #80ff00
!*color11: #cdd24a
!*color12: #5f5fee
!*color13: #bb88dd
!*color14: #4eb4fa
!*color15: #d0d0d0
! urxvt
URxvt*termName: rxvt-unicode-256color
URxvt*geometry: 90x25
URxvt*reverseVideo: false
URxvt*font: xft:Inconsolata:size=10
URxvt*letterSpace: -1
URxvt*scrollBar: true
URxvt*scrollBar_floating: true
URxvt*scrollBar_right: false
URxvt*scrollColor: #0c0c0c
URxvt*saveLines: 5500
URxvt.perl-ext-common: default,matcher,-searchable-scrollback
URxvt.urlLauncher: firefox
URxvt.matcher.button: 1
URxvt*colorUL: yellow
Last edited by OBLiQUE (2011-12-30 16:10:33)
Offline
mpd_host = "localhost"
mpd_music_dir = "/home/skottish/music"
mpd_connection_timeout = "5"
song_list_format = "{%a - }{%t}|{$8%f$9}$R{$5(%l)$9}"
song_columns_list_format = "(6)[black]{l} (15)[blue]{a} (35)[black]{b} (53)[blue]{t}"
playlist_display_mode = "columns"
colors_enabled = "yes"
empty_tag_color = "black"
header_window_color = "blue"
volume_color = "blue"
state_line_color = "blue"
state_flags_color = "blue"
main_window_color = "blue"
color1 = "blue"
color2 = "black"
main_window_highlight_color = "white"
progressbar_color = "blue"
statusbar_color = "blue"
active_column_color = "darkblue"
window_border_color = "white"
active_window_border = "blue"
*** CONTAIN YOUR EXCITEMENT PEOPLE ***
Offline
I've got pretty much default settings I think:
http://dl.dropbox.com/u/55300697/desktop/ncmpcpp4.png
well ok, here's snip of my .Xresources (colors and all stolen from somewhere):
URxvt.depth: 32
URxvt.background: rgba:1111/1111/1111/dddd
URxvt*termName: rxvt
!!URxvt*reverseVideo: true
URxvt*scrollBar: false
URxvt*font: xft:Tamsyn:size=10
!(235, 248)
URxvt.foreground: #A8A8A8
!(252)
URxvt.colorBD: #D0D0D0
URxvt.colorIT: #D0D0D0
URxvt.colorUL: #D0D0D0
!BLK (236, 243)
URxvt.color0: #303030
URxvt.color8: #767676
!WHT (252, 231)
URxvt.color7: #D0D0D0
URxvt.color15: #FFFFFF
!RED
URxvt.color1: #E16B6A
URxvt.color9: #FFA3A3
!GRN
URxvt.color2: #48A16F
URxvt.color10: #80D9A5
!YEL
URxvt.color3: #C0824F
URxvt.color11: #F7B985
!BLU
URxvt.color4: #7B91C6
URxvt.color12: #B0C7FC
!MAG
URxvt.color5: #DF679A
URxvt.color13: #FF9FD4
!CYN
URxvt.color6: #4E9E9E
URxvt.color14: #85D5D4
Offline
Offline
Last edited by Montague (2015-07-28 02:38:18)
Offline
#
# ~/.ncmpcpp/config
#
# connection settings
mpd_music_dir = "/home/w0ng/music"
# song format
song_list_format = "{$2%n▕ $9}{$7%a - $9}{$6%t$9}|{$8%f$9}$R{$4▕ %b$9}{$3▕ %l$9}"
# various settings
autocenter_mode = "yes"
header_visibility = "no"
progressbar_look = "─╼·"
statusbar_visibility = "no"
# color definitions
main_window_color = "white"
main_window_highlight_color = "white"
All configs @ https://github.com/w0ng
Offline
Hi,
I have a question about ncmpcpp. I'm messing around with the configs and got everything pretty much as I want, but there's one thing I want and I don't know if it's possible. When selecting an item, it "inverts" the text, like this:
What I would like to know if, and if so how, it's possible to not make it "invert" the colors, but make the text bold?
Also, can I edit the Search Window colors?
Last edited by Unia (2012-05-08 17:00:09)
If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres
Offline
Also, can I edit the Search Window colors?
Not sure what you mean with the search windows, but i think this code will do the trick
empty_tag_color = "INSERT_YOUR_COLOR_HERE"
Anyway, here is my ncmpcpp config
# NCMPCPP CONFIGURATION
# FOR SETTINGS INFORMATION, SEE /usr/share/doc/ncmpcpp/config
# DIRECTORY SETTINGS
lyrics_directory = "~/.ncmpcpp/lyrics"
mpd_music_dir = "~/music"
# VISUALIZATION
audio_output {
type "fifo"
name "My FIFO"
path "/tmp/mpd.fifo"
format "44100:16:2"
}
visualizer_in_stereo = "yes"
visualizer_sync_interval = "30"
# USER INTERFACE
user_interface = "alternative" (classic/alternative)
alternative_header_first_line_format = "$b$1$aqqu$/a$8 {%t}|{%f} $1$atqq$/a$9$/b"
alternative_header_second_line_format = "{{$4$b%a$/b$9}{ - $2%b$9}}|{%D}"
song_window_title_format = "NCMPCPP - {%a - }{%t}|{%f}"
song_columns_list_format = "(40)[yellow]{t|f} (20)[red]{a} (30)[yellow]{b} (10f)[red]{lr:Length}"
playlist_show_remaining_time = "yes"
playlist_shorten_total_times = "yes"
playlist_display_mode = "columns" (classic/columns)
clock_display_seconds = "yes"
display_bitrate = "yes"
empty_tag_color = "red"
color1 = "white"
color2 = "red"
active_column_color = "red"
alternative_ui_separator_color = "white"
main_window_color = "white"
header_window_color= "yellow"
state_line_color = "white"
state_flags_color= "white"
Last edited by whiterock (2012-05-10 13:12:08)
Offline
^ Thanks, that did it indeed. I guess it's not possible to edit the highlighting, I went through the manpage reading every entry and it didn't list any
If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres
Offline