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 | egrep -v '^#' .ncmpcpp/config
mpd_music_dir = "/home/username/Music/"
mpd_crossfade_time = "3"
mpd_host = "127.0.0.1"
mpd_port = "6601"
visualizer_fifo_path = "/tmp/mpd.fifo"
visualizer_output_name = "my_fifo"
visualizer_sync_interval = "30"
visualizer_in_stereo = "no"
visualizer_type = "spectrum" (spectrum/wave)
visualizer_look = "▋▋"
visualizer_color = "white"
main_window_highlight_color = "white"
progressbar_look = "▁▁▁"
progressbar_color = "black"
progressbar_elapsed_color = "white"
song_list_format = " $8%a • %t"
song_status_format = " $6%a $7%t $5%b "
now_playing_prefix = "$b$2▶ "
now_playing_suffix = "$8$/b"
song_columns_list_format = "(8f)[black]{l} (32)[red]{a} (42)[yellow]{t|f} (18)[magenta]{b}"
color1 = "white"
color2 = "black"
mouse_support = "yes"
header_visibility = "no"
statusbar_visibility = "no"
playlist_display_mode = "classic" (classic/columns)
autocenter_mode = "yes"
titles_visibility = "no"
enable_window_title = "no"
|
x
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 | !-------------------------------------------------------------------------------
!urxvt
!-------------------------------------------------------------------------------
Xft.dpi: 120
Xft.antialiasing: true
Xft.rgba: rgb
Xft.hinting: true
Xft.lcdfilter: lcddefault
*.cursorColor: #C1C1C1
URxvt.borderColor: #282f39
URxvt.borderless: true
URxvt.internalBorder: 6
URxvt.underlineColor: #333333
URxvt.highlightColor: #6eddba
URxvt.highlightTextColor: #282f39
URxvt.scrollstyle: plain
URxvt.scrollBar: false
URxvt.scrollTtyOutput: false
URxvt.scrollWithBuffer: true
URxvt.scrollTtyKeypress: true
URxvt.cursorBlink: true
URxvt.cursorUnderline: false
URxvt.depth: 35
!- Perl Extension
URxvt.perl-ext-common: default,matcher,url-select,clipboard
URxvt.url-launcher: chromium
URxvt.matcher.button: 1
!- Copy/paste
URxvt.iso14755: False
URxvt.keysym.Shift-Alt-C: perl:clipboard:copy
URxvt.keysym.Shift-Alt-V: perl:clipboard:paste
URxvt.underlineURLs: true
#URxvt.font.xft.FontAwesome\-g: size=8
#URxvt.font:xft:Inconsolata\-g: size=8
URxvt.font:xft:EnvyCodeR\-g: size=9
URxvt.boldFont:
URxvt.transparent: false
URxvt.shading: 30
URxvt.geometry: 60x22
!-Urgent Terminal for Notification
URxvt*urgentOnBell: true
URxvt*visualBell: alse
!colors scheme
URxvt.background: #282f39
URxvt.foreground: #C1C1C1
URxvt.colorBD: #CFCFCF
URxvt.colorUL: #A0A0A0
URxvt.colorIT: #686868
!BLK
URxvt.color0: #303030
URxvt.color8: #686868
!RED
URxvt.color9: #F28080
URxvt.color1: #E26C6C
!GRN
URxvt.color10: #A3D572
URxvt.color2: #6D9E3F
!BLU
URxvt.color12: #98CBFE
URxvt.color4: #6095C5
!YEL
URxvt.color11: #EFBD8B
URxvt.color3: #B58858
!CYN
URxvt.color14: #75DAA9
URxvt.color6: #3BA275
!MAG
URxvt.color13: #E5B0FF
URxvt.color5: #AC7BDE
!WHT
URxvt.color7: #AAAAAA
URxvt.color15: #C1C1C1
|
x