guest@dotshare [~/groups/mpd/ncmpcpp] $ ls Dotdot/ | cat

Dotdot (scrot)

kazehaya Apr 04, 2015 (mpd/ncmpcpp)

DotDot(raw, dl)

SCROT

 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
mpd_music_dir = "/home/kaze/Music/"

        audio_output {
type "fifo"
name "FIFO"
path "/tmp/mpd.fifo"
format "44100:16:2"
}
 
#lyrics_directory="~/.ncmpcpp/lyrics"
visualizer_in_stereo = no
visualizer_type = spectrum
visualizer_look = ▋▋

playlist_disable_highlight_delay = 2
message_delay_time = 1
browser_sort_format = {%l} | {%f}

#selected_item_suffix = $9
#selected_item_prefix = $6
#modified_item_prefix = $3> $9
now_playing_prefix = "$b" 
#Ξnow_playing_suffix = "$/b (╥_╥) (˚◡◡˚)"
now_playing_suffix = "$/b  ✪ ✪  "
song_list_format = "{ $8%a  ✘♬  $2}{%t}$8"
#song_status_format = "$8%a $2»» $8%t $2"
statusbar_visibility = "no"
autocenter_mode = "yes"
centered_cursor = "yes"

song_window_title_format = : {%a - }{%t}
####song_list_format = {$8%l  ▋  $8%t    $R$2   ▋  %a}
####song_list_format = {  ▋  $8%t    $R$2    $8%l  $2▋}
#song_list_format = {Ξ  $8%t  $R$2 $2 %a  Ξ}
#song_list_format = { $8%t  ─╼─ $2 %a  }
playlist_display_mode = classic
browser_display_mode = columns
progressbar_look = "─╼─"
startup_screen = playlist
display_bitrate = yes
#colors_enabled = yes
#visualizer_color = red
progressbar_color = white
progressbar_elapsed_color = cyan
main_window_color = white
main_window_highlight_color = white
alternative_ui_separator_color = cyan
empty_tag_color = default
header_visibility = no
#statusbar_visibility = no
titles_visibility = no
mouse_support = yes

###●▋▒ ▋▋

##### song format #####
##
## for 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

## - 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
##

CLICK TO VIEW

x

.Xdefaults(raw, dl)

 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
Xft*dpi: 96
Xft*antialias: true
Xtf*hinting: full

*foreground: #DDCCBB

! Brown BG
!*background: #30251D

! white BG
!*background: #fafafa

! Grey BG
*background: #151515


!black
*color0:     #393939
*color8:     #AF875F
!red
*color1:     #BF1E2D
*color9:     #E7212A
!green
*color2:     #9DBA3A
*color10:    #A9C938
!yellow
*color3:     #F5B915
*color11:    #F7D325
!blue
*color4:     #1CA1DB
*color12:    #00AFDA
!magenta
*color5:     #652F90
*color13:    #894E9F
!cyan
*color6:     #EA7D24
*color14:    #F79321
!white
*color7:     #E7E8E9
*color15:    #F3F3F4
 

x

mpd(raw, dl)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
music_directory "/home/kaze/Music" 
playlist_directory "~/.mpd/playlists"
db_file "~/.mpd/mpd.db"
log_file "~/.mpd/mpd.log"
pid_file "~/.mpd/mpd.pid"
state_file "~/.mpd/mpdstate"


    audio_output {
    type "alsa"
    name "My ALSA Device"
    }

 audio_output {
        type            "fifo"
        name            "My FIFO"
        path            "/tmp/mpd.fifo"
        format          "44100:16:2"
}
 

x