-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathncmpcpp
More file actions
125 lines (113 loc) * 3.85 KB
/
ncmpcpp
File metadata and controls
125 lines (113 loc) * 3.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# See /usr/share/doc/ncmpcpp/config
ncmpcpp_directory = ~/.ncmpcpp
lyrics_directory = ~/.mpd/lyrics/
mpd_music_dir = ~/Music
mpd_host = localhost
mpd_crossfade_time = 5
lyrics_fetchers = azlyrics, metrolyrics, musixmatch, genius, sing365, justsomelyrics, jahlyrics, plyrics, tekstowo, zeneszoveg, internet
autocenter_mode = yes
centered_cursor = yes
# FIFO visualizer
visualizer_data_source = /tmp/mpd.fifo
visualizer_output_name = "FIFO"
visualizer_in_stereo = yes
visualizer_type = ellipse
#wave/spectrum/wave_filled/ellipse
visualizer_autoscale = no
visualizer_look = "*#"
song_columns_list_format = (5)[]{} (55)[yellow]{t|f:Title} (35)[white]{ar} (5)[]{}
song_list_format = "{%t }|{%f }$R{%b}"
now_playing_prefix = "$b$u>>"
now_playing_suffix = "$/b$/u"
mouse_support = no
execute_on_song_change="notify-send "Now playing" "$(ncmpcpp --current-song="{%a - }{%t}|{%f}")""
# Colors
colors_enabled = "yes"
empty_tag_color = "cyan"
header_window_color = "black"
volume_color = "cyan"
state_line_color = "black"
state_flags_color = "magenta"
main_window_color = "yellow"
color1 = "white"
color2 = "black"
current_item_prefix = "$(yellow)$r"
current_item_suffix = "$/r$(end)"
current_item_inactive_column_prefix = "$(white)$r"
current_item_inactive_column_suffix = "$/r$(end)"
header_visibility = "yes"
titles_visibility = "no"
[statusbar]
progressbar_look = "###"
progressbar_color = "red"
progressbar_elapsed_color = "cyan"
statusbar_visibility = "no"
statusbar_color = "3"
song_status_format = "{%t - %a}|{%f}"
##### song format #####
##
## For a song format you can use:
##
## %l - length
## %f - filename
## %D - directory
## %a - artist
## %A - album artist
## %t - title
## %b - album
## %y - date
## %n - track number (01/12 -> 01)
## %N - full track info (01/12 -> 01/12)
## %g - genre
## %c - composer
## %p - performer
## %d - disc
## %C - comment
## %P - priority
## $R - begin right alignment
##
## If you want to make sure that a part of the format is displayed
## only when certain tags are present, you can archieve it by
## grouping them with brackets, e.g. '{%a - %t}' will be evaluated
## to 'ARTIST - TITLE' if both tags are present or '' otherwise.
## It is also possible to define a list of alternatives by providing
## several groups and separating them with '|', e.g. '{%t}|{%f}'
## will be evaluated to 'TITLE' or 'FILENAME' if the former is not
## present.
##
## Note: 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'.
##
## In addition, formats support markers used for text attributes.
## They are followed by character '$'. After that you can put:
##
## - 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
## - b - bold text
## - u - underline text
## - r - reverse colors
## - a - use alternative character set
##
## If you don't want to use a non-color 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.
##
## If you want to use 256 colors and/or background colors in formats
## (the naming scheme is described below in section about color
## definitions), it can be done with the syntax $(COLOR), e.g. to set
## the artist tag to one of the non-standard colors and make it have
## yellow background, you need to write $(197_yellow)%a$(end). Note
## that for standard colors this is interchangable with attributes
## listed above.
##
## Note: colors can be nested.