as always, various

This commit is contained in:
Amolith 2019-10-12 22:44:15 -04:00
parent 2d254673f8
commit 046079895f
Signed by: Amolith
GPG Key ID: 51FD40936DB0065B
33 changed files with 1411 additions and 55 deletions

1
bin/pass_dmenu Executable file
View File

@ -0,0 +1 @@
gopass ls --flat | dmenu | xargs --no-run-if-empty gopass show -f | head -n 1 | xdotool type --delay 100 --clearmodifiers --file - && notify-send "Completed" "Password has been typed successfully"

View File

@ -1,25 +0,0 @@
#!/usr/bin/env bash
shopt -s nullglob globstar
typeit=0
if [[ $1 == "--type" ]]; then
typeit=1
shift
fi
prefix=${PASSWORD_STORE_DIR-~/.password-store}
password_files=( "$prefix"/**/*.gpg )
password_files=( "${password_files[@]#"$prefix"/}" )
password_files=( "${password_files[@]%.gpg}" )
password=$(printf '%s\n' "${password_files[@]}" | dmenu "$@")
[[ -n $password ]] || exit
if [[ $typeit -eq 0 ]]; then
pass show -c "$password" 2>/dev/null
else
pass show "$password" | { IFS= read -r pass; printf %s "$pass"; } |
xdotool type --clearmodifiers --file -
fi

View File

@ -1,6 +1,6 @@
#!/bin/bash
dir=$"/home/amolith/Audio/Music/Phone/"
dir=$"/home/amolith/Music/Phone/"
IFS=$'\n'
for i in $(find . -type d); do

Binary file not shown.

1
glava/.config/glava/bars Symbolic link
View File

@ -0,0 +1 @@
/etc/xdg/glava//bars

32
glava/.config/glava/bars.glsl Executable file
View File

@ -0,0 +1,32 @@
/* Center line thickness (pixels) */
#define C_LINE 1
/* Width (in pixels) of each bar */
#define BAR_WIDTH 4
/* Width (in pixels) of each bar gap */
#define BAR_GAP 2
/* Outline color */
#define BAR_OUTLINE #262626
/* Outline width (in pixels, set to 0 to disable outline drawing) */
#define BAR_OUTLINE_WIDTH 0
/* Amplify magnitude of the results each bar displays */
#define AMPLIFY 400
/* Alpha channel for bars color */
#define ALPHA 0.7
/* How strong the gradient changes */
#define GRADIENT_POWER 70
/* Bar color changes with height */
#define GRADIENT (d / GRADIENT_POWER + 1)
/* Bar color */
#define COLOR (#3366b2 * GRADIENT * ALPHA)
/* Direction that the bars are facing, 0 for inward, 1 for outward */
#define DIRECTION 0
/* Whether to switch left/right audio buffers */
#define INVERT 0
/* Whether to flip the output vertically */
#define FLIP 0
/* Whether to mirror output along `Y = X`, causing output to render on the left side of the window */
/* Use with `FLIP 1` to render on the right side */
#define MIRROR_YX 0

1
glava/.config/glava/circle Symbolic link
View File

@ -0,0 +1 @@
/etc/xdg/glava//circle

24
glava/.config/glava/circle.glsl Executable file
View File

@ -0,0 +1,24 @@
/* center radius (pixels) */
#define C_RADIUS 128
/* center line thickness (pixels) */
#define C_LINE 1.5
/* outline color */
#define OUTLINE #333333
/* Amplify magnitude of the results each bar displays */
#define AMPLIFY 150
/* Angle (in radians) for how much to rotate the visualizer */
#define ROTATE (PI / 2)
/* Whether to switch left/right audio buffers */
#define INVERT 0
/* Whether to fill in the space between the line and inner circle */
#define C_FILL 0
/* Whether to apply a post-processing image smoothing effect
1 to enable, 0 to disable. Only works with `xroot` transparency,
and improves performance if disabled. */
#define C_SMOOTH 1
/* Gravity step, overrude frin `smooth_parameters.glsl` */
#request setgravitystep 6.0
/* Smoothing factor, override from `smooth_parameters.glsl` */
#request setsmoothfactor 0.01

View File

@ -0,0 +1,8 @@
#request setdecorated false
#request setxwintype "normal"
#request addxwinstate "below"
#request addxwinstate "skip_taskbar"
#request addxwinstate "skip_pager"
#request addxwinstate "pinned"
#request setclickthrough true

View File

@ -0,0 +1,2 @@
#request setxwintype "desktop"
#request addxwinstate "pinned"

View File

@ -0,0 +1,3 @@
#request setxwintype "desktop"
#request addxwinstate "pinned"
#request addxwinstate "below"

View File

@ -0,0 +1 @@
#request setxwintype "!-"

View File

@ -0,0 +1 @@
#request setxwintype "desktop"

View File

@ -0,0 +1 @@
#request setxwintype "!-"

1
glava/.config/glava/graph Symbolic link
View File

@ -0,0 +1 @@
/etc/xdg/glava//graph

25
glava/.config/glava/graph.glsl Executable file
View File

@ -0,0 +1,25 @@
/* Vertical scale, larger values will amplify output */
#define VSCALE 300
/* Rendering direction, either -1 (outwards) or 1 (inwards). */
#define DIRECTION 1
/* Color gradient scale, (optionally) used in `COLOR` macro */
#define GRADIENT_SCALE 75
/* Color definition. By default this is a gradient formed by mixing two colors.
`pos` represents the pixel position relative to the visualizer baseline. */
#define COLOR mix(#802A2A, #4F4F92, clamp(pos / GRADIENT_SCALE, 0, 1))
/* 1 to draw outline, 0 to disable */
#define DRAW_OUTLINE 0
/* 1 to draw edge highlight, 0 to disable */
#define DRAW_HIGHLIGHT 1
/* outline color */
#define OUTLINE #262626
/* 1 to invert (vertically), 0 otherwise */
#define INVERT 0
/* Gravity step, overrude from `smooth_parameters.glsl` */
#request setgravitystep 2.4
/* Smoothing factor, override from `smooth_parameters.glsl` */
#request setsmoothfactor 0.015

1
glava/.config/glava/radial Symbolic link
View File

@ -0,0 +1 @@
/etc/xdg/glava//radial

39
glava/.config/glava/radial.glsl Executable file
View File

@ -0,0 +1,39 @@
/* center radius (pixels) */
#define C_RADIUS 128
/* center line thickness (pixels) */
#define C_LINE 2
/* outline color */
#define OUTLINE #333333
/* number of bars (use even values for best results) */
#define NBARS 180
/* width (in pixels) of each bar*/
#define BAR_WIDTH 3.5
/* outline color */
#define BAR_OUTLINE OUTLINE
/* outline width (in pixels, set to 0 to disable outline drawing) */
#define BAR_OUTLINE_WIDTH 0
/* Amplify magnitude of the results each bar displays */
#define AMPLIFY 900
/* Bar color */
#define COLOR (#cc3333 * ((d / 40) + 1))
/* Angle (in radians) for how much to rotate the visualizer */
#define ROTATE (PI / 2)
/* Whether to switch left/right audio buffers */
#define INVERT 0
/* Aliasing factors. Higher values mean more defined and jagged lines.
Note: aliasing does not have a notable impact on performance, but requires
`xroot` transparency to be enabled since it relies on alpha blending with
the background. */
#define BAR_ALIAS_FACTOR 1.2
#define C_ALIAS_FACTOR 1.8
/* Offset (Y) of the visualization */
#define CENTER_OFFSET_Y 0
/* Offset (X) of the visualization */
#define CENTER_OFFSET_X 0
/* Gravity step, override from `smooth_parameters.glsl` */
#request setgravitystep 5.0
/* Smoothing factor, override from `smooth_parameters.glsl` */
#request setsmoothfactor 0.02

218
glava/.config/glava/rc.glsl Executable file
View File

@ -0,0 +1,218 @@
/* The module to use. A module is a set of shaders used to produce
the visualizer. The structure for a module is the following:
module_name [directory]
1.frag [file: fragment shader],
2.frag [file: fragment shader],
...
Shaders are loaded in numerical order, starting at '1.frag',
continuing indefinitely. The results of each shader (except
for the final pass) is given to the next shader in the list
as a 2D sampler.
See documentation for more details. */
#request mod bars
/* Window hints */
#request setfloating false
#request setdecorated true
#request setfocused false
#request setmaximized false
/* Set window background opacity mode. Possible values are:
"native" - True transparency provided by the compositor. Can
reduce performance on some systems, depending on
the compositor used.
"xroot" - Maintain a copy of the root window's pixmap
(usually the desktop background) to provide a
pseudo-transparent effect. Useful when no compositor
is available or native transparency isn't nessecary.
Has very little performance impact.
"none" - Disable window opacity completely. */
#request setopacity "native"
/* Whether to mirror left and right audio input channels from PulseAudio.*/
#request setmirror false
/* OpenGL context and GLSL shader versions, do not change unless
you *absolutely* know what you are doing. */
#request setversion 3 3
#request setshaderversion 330
/* Window title */
#request settitle "GLava"
/* Window geometry (x, y, width, height) */
#request setgeometry 0 0 1366 768
/* Window background color (RGB format).
Does not work with `setopacity "xroot"` */
#request setbg 00000000
/* (X11 only) EWMH Window type. Possible values are:
"desktop", "dock", "toolbar", "menu",
"utility", "splash", "dialog", "normal"
This will set _NET_WM_WINDOW_TYPE to _NET_WM_WINDOW_TYPE_(TYPE),
where (TYPE) is the one of the window types listed (after being
converted to uppercase).
Alternatively, you can set this value to "!", which will cause
the window to be unmanaged. If this is set, then `addxwinstate`
will do nothing, but you can use "!+" and "!-" to stack on top
or below other windows.
*/
#request setxwintype "normal"
/* (X11 only) EWMH Window state atoms (multiple can be specified).
Possible values are:
"modal", "sticky", "maximized_vert", "maximized_horz",
"shaded", "skip_taskbar", "skip_pager", "hidden", "fullscreen",
"above", "below", "demands_attention", "focused", "pinned"
This will add _NET_WM_STATE_(TYPE) atoms to _NET_WM_STATE,
where (TYPE) is one of the window states listed (after being
converted to uppercase).
The lines below (commented out by default) are of relevance
if you are trying to get GLava to behave as a desktop widget
and your WM is not correctly responding to the "desktop" value
for `setxwintype`.
*/
// #request addxwinstate "sticky"
// #request addxwinstate "skip_taskbar"
// #request addxwinstate "skip_pager"
// #request addxwinstate "above"
// #request addxwinstate "pinned"
/* (X11 only) Use the XShape extension to support clicking through
the GLava window. Useful when you want to interact with other
desktop windows (icons, menus, desktop shells). Enabled by
default when GLava itself is a desktop window. */
#request setclickthrough false
/* PulseAudio source. Can be a number or a name of an audio
sink or device to record from. Set to "auto" to use the
default output device. */
#request setsource "auto"
/* Buffer swap interval (vsync), set to '0' to prevent
waiting for refresh, '1' (or more) to wait for the specified
amount of frames. */
#request setswap 1
/* Linear interpolation for audio data frames. Drastically
improves smoothness with configurations that yield low UPS
(`setsamplerate` and `setsamplesize`), or monitors that have
high refresh rates.
This feature itself, however, will effect performance as it
will have to interpolate data every frame on the CPU. It will
automatically (and temporarily) disable itself if the update
rate is close to, or higher than the framerate:
if (update_rate / frame_rate > 0.9) disable_interpolation;
This will delay data output by one update frame, so it can
desync audio with visual effects on low UPS configs. */
#request setinterpolate true
/* Frame limiter, set to the frames per second (FPS) desired or
simply set to zero (or lower) to disable the frame limiter. */
#request setframerate 0
/* Suspends rendering if a fullscreen window is focused while
GLava is still visible (ie. on another monitor). This prevents
rendering from interfering with other graphically intensive
tasks.
If GLava is minimized or completely obscured, it will not
render regardless of this option. */
#request setfullscreencheck false
/* Enable/disable printing framerate every second. 'FPS' stands
for 'Frames Per Second', and 'UPS' stands for 'Updates Per
Second'. Updates are performed when new data is submitted
by pulseaudio, and require transformations to be re-applied
(thus being a good measure of how much work your CPU has to
perform over time) */
#request setprintframes true
/* PulseAudio sample buffer size. Lower values result in more
frequent audio updates (also depends on sampling rate), but
will also require all transformations to be applied much
more frequently (CPU intensive).
High (>2048, with 22050 Hz) values will decrease accuracy
(as some signals can be missed by transformations like FFT)
The following settings (@22050 Hz) produce the listed rates:
Sample UPS Description
- 2048 -> 43.0 (low accuracy, cheap), use with < 60 FPS
- 1024 -> 86.1 (high accuracy, expensive), use with >= 60 FPS
- 512 -> 172.3 (extreme accuracy, very expensive), use only
for graphing accurate spectrum data with
custom modules.
If the framerate drops below the update rate, the update rate
will be locked to the framerate (to prevent wasting CPU time).
This behaviour means you can use a 1024 sample size on a 60Hz
monitor with vsync enabled to get 60FPS and 60UPS.
For high refresh rate monitors (120+ Hz), it's recommended to
also stick with the 1024 sample size and use interpolation to
smooth the data, as accuracy beyond this setting is mostly
meaningless for visual purposes.
*/
#request setsamplesize 1024
/* Audio buffer size to be used for processing and shaders.
Increasing this value can have the effect of adding 'gravity'
to FFT output, as the audio signal will remain in the buffer
longer.
This value has a _massive_ effect on FFT performance and
quality for some modules. */
#request setbufsize 4096
/* PulseAudio sample rate. Lower values can add 'gravity' to
FFT output, but can also reduce accuracy. Most hardware
samples at 44100Hz.
Lower sample rates also can make output more choppy, when
not using interpolation. It's generally OK to leave this
value unless you have a strange PulseAudio configuration. */
#request setsamplerate 22050
/* ** DEPRECATED **
Force window geometry (locking the window in place), useful
for some pesky WMs that try to reposition the window when
embedding in the desktop.
This routinely sends X11 events and should be avoided. */
#request setforcegeometry false
/* ** DEPRECATED **
Force window to be raised (focused in some WMs), useful for
WMs that have their own stacking order for desktop windows.
This routinely sends X11 events and should be avoided. */
#request setforceraised false
/* ** DEPRECATED **
Scale down the audio buffer before any operations are
performed on the data. Higher values are faster.
This value can affect the output of various transformations,
since it applies (crude) averaging to the data when shrinking
the buffer. It is reccommended to use `setsamplerate` and
`setsamplesize` to improve performance or accuracy instead. */
#request setbufscale 1

View File

@ -0,0 +1,63 @@
/* Settings for smoothing functions and transformations commonly
used to display FFT output.
IMPORTANT: THESE VALUES CAN BE OVERRIDDEN IN MODULE CONFIG
FILES, IF CHANGING VALUES HERE DOES NOT WORK, CHECK
TO MAKE SURE THEY ARE NOT BEING SET ELSEWHERE.
*/
/* The type of formula to use for weighting values when smoothing.
Possible values:
- circular heavily rounded points
- sinusoidal rounded at both low and high weighted values
like a sine wave
- linear not rounded at all, just use linear distance
*/
#define ROUND_FORMULA linear
/* Factor used to scale frequencies. Lower values allows lower
frequencies to occupy more space. */
#define SAMPLE_SCALE 5
/* The frequency range to sample. 1.0 would be the entire FFT output,
and lower values reduce the displayed frequencies in a log-like
scale. */
#define SAMPLE_RANGE 0.9
/* Factor for how to scale higher frequencies. Used in a linear equation
which is multiplied by the result of the fft transformation. */
#request setfftscale 10.2
/* Cutoff for the bass end of the audio data when scaling frequencies.
Higher values cause more of the bass frequencies to be skipped when
scaling. */
#request setfftcutoff 0.3
/* How many frames to queue and run through the average function.
Increasing this value will create latency between the audio and the
animation, but will make for much smoother results. */
#request setavgframes 6
/* Whether to window frames ran through the average function (new & old
frames are weighted less). This massively helps smoothing out
spontaneous values in the animation. */
#request setavgwindow true
/* Gravity step, higher values means faster drops. The step is applied
in a rate independant method like so:
val -= (gravitystep) * (seconds per update) */
#request setgravitystep 4
/* Smoothing factor. Larger values mean more smoothing in the output,
however high values can be expensive to compute. Values are in
normalized width: [0.0, 1.0) */
#request setsmoothfactor 0.025
/* Whether to use a separate pass for audio data while smoothing. On
most hardware, this will improve performance, but involves doing a
separate render step for each audio texture and will add some driver
(CPU) overhead. */
#request setsmoothpass true

1
glava/.config/glava/util Symbolic link
View File

@ -0,0 +1 @@
/etc/xdg/glava//util

1
glava/.config/glava/wave Symbolic link
View File

@ -0,0 +1 @@
/etc/xdg/glava//wave

14
glava/.config/glava/wave.glsl Executable file
View File

@ -0,0 +1,14 @@
/* min (vertical) line thickness */
#define MIN_THICKNESS 1
/* max (vertical) line thickness */
#define MAX_THICKNESS 6
/* base color to use, distance from center will multiply the RGB components */
#define BASE_COLOR vec4(0.7, 0.2, 0.45, 1)
/* amplitude */
#define AMPLIFY 500
/* outline color */
#define OUTLINE vec4(0.15, 0.15, 0.15, 1)

View File

@ -33,12 +33,10 @@ bindsym $mod+e exec rofi -show emoji -modi emoji
bindsym $mod+m exec rofi-mpd -a
bindsym $mod+shift+m exec mansplain
bindsym $mod+shift+k exec ~/repos/kaomoji-rofi/kaomoji.sh
bindsym $mod+d exec passmenu --type
bindsym $mod+shift+d exec passmenu
bindsym $mod+d exec pass_dmenu
bindsym $mod+shift+z exec rofi -show drun
bindsym $mod+w exec networkmanager_dmenu
bindsym $mod+c exec rofi-calc
bindsym $mod+p exec rofi-pass
# change focus
bindsym $mod+h focus left
@ -169,7 +167,7 @@ exec_always --no-startup-id xinput set-prop 12 291 0
exec_always --no-startup-id xinput set-prop 13 299 1
exec_always --no-startup-id xinput set-prop 13 307 0
exec_always --no-startup-id xinput set-prop 13 284 1
exec_always --no-startup-id mpd
exec_always --no-startup-id mpd ~/.config/mpd/mpd.conf
exec_always --no-startup-id mpDris2
exec_always --no-startup-id launch
exec_always --no-startup-id pkill glava; glava -d
@ -177,6 +175,7 @@ exec_always --no-startup-id anon
exec_always --no-startup-id syncthing -no-browser
exec_always --no-startup-id dunst
exec_always --no-startup-id blueman-applet
exec_always --no-startup-id indicator-bulletin
# run on startup only
@ -224,7 +223,7 @@ bindsym $mod+Shift+r restart
# exit i3 (logs you out of your X session)
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
# lock i3
bindsym $mod+shift+x exec playerctl pause && dm-tool lock
bindsym $mod+shift+x exec dm-tool lock
# suspend system
bindsym $mod+s exec systemctl suspend
# launch flameshot

View File

@ -132,8 +132,8 @@
id="rect"
style="fill:blue;"
usecurrent="1"
width="0"
height="0"
width="1548.57"
height="1611.43"
rx="0"
ry="0" />
<eventcontext
@ -170,7 +170,9 @@
style="fill:red;"
end="0"
start="0"
usecurrent="1" />
usecurrent="1"
rx="131.32"
ry="131.32" />
<eventcontext
id="star"
magnitude="5"
@ -548,7 +550,7 @@
</group>
<group
id="colorselector"
page="0" />
page="1" />
<group
id="embedded">
<group
@ -565,7 +567,20 @@
<group
id="toolbox" />
<group
id="fillstroke" />
id="fillstroke"
panel_size="1"
panel_ratio="100"
panel_mode="1"
panel_wrap="0"
panel_border="0"
page="0"
x="0"
y="0"
w="354"
h="427"
visible="1"
state="2"
placement="1" />
<group
id="filtereffects" />
<group
@ -583,7 +598,7 @@
align-to="4"
x="0"
y="0"
w="356"
w="354"
h="412"
visible="1"
state="2"
@ -606,9 +621,9 @@
panel_mode="1"
panel_wrap="0"
panel_border="0"
x="683"
y="384"
w="612"
x="860"
y="13"
w="623"
h="652"
visible="0"
placement="1" />
@ -645,19 +660,20 @@
h="487"
visible="1"
state="2"
placement="1">
placement="2">
<group
id="exportarea"
value="drawing" />
value="page" />
<group
id="defaultxdpi" />
id="defaultxdpi"
value="96" />
</group>
<group
id="save_as"
default="org.inkscape.output.svg.inkscape"
append_extension="1"
enable_preview="1"
path="/home/amolith/repos/nixnet/assets/svgs"
path="/home/amolith"
use_current_dir="1" />
<group
id="save_copy"
@ -672,10 +688,11 @@
<group
id="import"
enable_preview="1"
path="/home/amolith/"
path="/home/amolith/repos/nixnet/assets/svgs/"
ask="1"
link="link"
scale="optimizeSpeed" />
link="embed"
scale="optimizeQuality"
forcexdpi="0" />
<group
id="debug"
redirect="0" />
@ -705,7 +722,18 @@
id="extensioneditor" />
<group
id="trace"
state="1" />
state="1"
panel_size="1"
panel_ratio="100"
panel_mode="1"
panel_wrap="0"
panel_border="0"
x="663"
y="0"
w="585"
h="398"
visible="0"
placement="1" />
<group
id="script" />
<group
@ -762,7 +790,7 @@
value="12" />
<group
id="cursortolerance"
value="8.0" />
value="8" />
<group
id="dragtolerance"
value="4.0" />
@ -1006,16 +1034,17 @@
id="rendering" />
</group>
<group
id="extensions" />
id="extensions"
org.inkscape.input.gdkpixbuf.png.scale="optimizeQuality" />
<group
id="desktop"
style="line-height:1.25;fill:#b3b3b3">
style="line-height:1.25;fill:#6f6f6f;fill-opacity:1;-inkscape-font-specification:'Comfortaa Bold';font-family:Comfortaa;font-weight:bold;font-style:normal;font-stretch:normal;font-variant:normal">
<group
width="663"
width="1336"
height="698"
x="15"
y="35"
fullscreen="1"
fullscreen="0"
id="geometry"
maximized="0" />
<group

BIN
mpd/.config/mpd/database Normal file

Binary file not shown.

469
mpd/.config/mpd/log Executable file
View File

@ -0,0 +1,469 @@
Oct 06 13:30 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted
Oct 06 13:30 : exception: Failed to open '/home/amolith/.config/mpd/state': No such file or directory
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Flamingosis - Chillhop Essentials - Summer 2017 - 18 We Can Make It.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Hazy Year - Chillhop Essentials - Summer 2017 - 03 I'm Lost.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Badsummer - Chillhop Essentials - Summer 2017 - 11 Still Shining.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/iamalex - Chillhop Essentials - Summer 2017 - 09 If Only For A Day.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/The Cancel - Chillhop Essentials - Summer 2017 - 20 Can't You See.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Bonus Points - Chillhop Essentials - Summer 2017 - 17 Venice Beach w- Jeff Kaale.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Vanilla - Chillhop Essentials - Summer 2017 - 07 Too Much.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Poldoore - Chillhop Essentials - Summer 2017 - 08 Vista.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Philanthrope - Chillhop Essentials - Summer 2017 - 10 At Ease w-Monma.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Axian - Chillhop Essentials - Summer 2017 - 14 Hol It Down.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Moose Dawa - Chillhop Essentials - Summer 2017 - 15 Daylight.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/mtbrd - Chillhop Essentials - Summer 2017 - 05 Damn Fine Coffee.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/GYVUS - Chillhop Essentials - Summer 2017 - 02 Lemon Tea.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Ian Ewing - Chillhop Essentials - Summer 2017 - 19 Craft Draft Brewski Bois.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Jeff Kaale - Chillhop Essentials - Summer 2017 - 13 Mai Tai.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Bonus Points - Chillhop Essentials - Summer 2017 - 21 Hold Please.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Aso - Chillhop Essentials - Summer 2017 - 22 Alright.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/AJMW - Chillhop Essentials - Summer 2017 - 04 OldTricks.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Birocratic - Chillhop Essentials - Summer 2017 - 01 If I Tried.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Deeb - Chillhop Essentials - Summer 2017 - 06 Palm Parallels.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Limes - Chillhop Essentials - Summer 2017 - 23 Old Friends.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Guggenz - Chillhop Essentials - Summer 2017 - 12 Can't Forget You.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2017/Brock Berrigan - Chillhop Essentials - Summer 2017 - 16 Midnight Swim.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/Stan Forebee & Kyle McEvoy - Chillhop Essentials - Spring 2018 - 06 Kensington.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/Monma - Chillhop Essentials - Spring 2018 - 09 ManaTree.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/deeB - Chillhop Essentials - Spring 2018 - 22 Morningview.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/Toonorth - Chillhop Essentials - Spring 2018 - 20 Drop Top.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/Robot Orchestra - Chillhop Essentials - Spring 2018 - 21 thinking of you.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/City Girl - Chillhop Essentials - Spring 2018 - 16 Eowyn.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/j'san. - Chillhop Essentials - Spring 2018 - 02 good morning sunshine.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/Joe Corfield - Chillhop Essentials - Spring 2018 - 17 Wildflower.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/FloFilz - Chillhop Essentials - Spring 2018 - 12 Blue Orchard.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/Birocratic - Chillhop Essentials - Spring 2018 - 07 Handsome People.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/Aso & Middle School - Chillhop Essentials - Spring 2018 - 15 Tomorrow Never Knows.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/Ruck P - Chillhop Essentials - Spring 2018 - 05 Spring in La Coruña.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/illiterate - Chillhop Essentials - Spring 2018 - 14 Moonshine.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/Cloudchord - Chillhop Essentials - Spring 2018 - 11 H'okay (ft. Soul Food Horns).flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/mommy & snowglobe - Chillhop Essentials - Spring 2018 - 13 taipei rosebuds.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/OTESLA - Chillhop Essentials - Spring 2018 - 08 Carbon.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/Cap Kendricks - Chillhop Essentials - Spring 2018 - 01 The One.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/HM Surf - Chillhop Essentials - Spring 2018 - 04 Swix.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/Juan RIOS - Chillhop Essentials - Spring 2018 - 03 Azahar.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/plusma - Chillhop Essentials - Spring 2018 - 19 troubadix.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/Leavv - Chillhop Essentials - Spring 2018 - 10 Tomorrow.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2018/Psalm Trees - Chillhop Essentials - Spring 2018 - 18 Wherever You Are.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/mommy x delayde - Chillhop Essentials - Summer 2018 - 17 flashes of calm.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/Misha - Chillhop Essentials - Summer 2018 - 03 Bae.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/HM surf - Chillhop Essentials - Summer 2018 - 23 Oracle Night.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/floridomi - Chillhop Essentials - Summer 2018 - 10 Lakeside.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/Matt Quentin - Chillhop Essentials - Summer 2018 - 05 Sky Blue.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/L'indécis x Saib - Chillhop Essentials - Summer 2018 - 14 By the Seaside.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/Tane - Chillhop Essentials - Summer 2018 - 20 Zen.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/Remulak & Liphe - Chillhop Essentials - Summer 2018 - 04 Wonder.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/falcxne x Loupo - Chillhop Essentials - Summer 2018 - 15 Prayer.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/Unda de Sango - Chillhop Essentials - Summer 2018 - 13 The Lime Vibe.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/B-Side x Sixcube - Chillhop Essentials - Summer 2018 - 09 Don't Cry.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/plusma - Chillhop Essentials - Summer 2018 - 06 albatros.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/Eli Way x Emily Muli - Chillhop Essentials - Summer 2018 - 18 Stuck.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/Birocratic - Chillhop Essentials - Summer 2018 - 07 Shakedown.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/Lakey Inspired - Chillhop Essentials - Summer 2018 - 19 Saydee.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/Pandrezz - Chillhop Essentials - Summer 2018 - 01 Takin' You For a Ride.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/Aso - Chillhop Essentials - Summer 2018 - 11 Sundays.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/Sofasound - Chillhop Essentials - Summer 2018 - 08 Love Like a River.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/Ian Ewing x Philanthrope - Chillhop Essentials - Summer 2018 - 22 Smart Gurl in a Skort.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/santpoort - Chillhop Essentials - Summer 2018 - 21 rolling down this lazy wave.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/Stan Forebee - Chillhop Essentials - Summer 2018 - 16 Possums & Popcorn.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/C Y G N - Chillhop Essentials - Summer 2018 - 02 Love is Weakness.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2018/j'san. x Cloudchord - Chillhop Essentials - Summer 2018 - 12 First Wonder.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/Philanthrope - Chillhop Essentials - Winter 2017 - 09 Aspiration.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/tusken. - Chillhop Essentials - Winter 2017 - 17 winterrain.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/B-Side - Chillhop Essentials - Winter 2017 - 18 Dignity.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/Kupla - Chillhop Essentials - Winter 2017 - 08 Spacesuits.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/idealism - Chillhop Essentials - Winter 2017 - 10 latenite.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/Birocratic - Chillhop Essentials - Winter 2017 - 15 At Most.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/The Breed - Chillhop Essentials - Winter 2017 - 16 Salmiakki.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/Juan RIOS - Chillhop Essentials - Winter 2017 - 01 perenne.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/Flitz&Suppe - Chillhop Essentials - Winter 2017 - 19 Sailing Above.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/Aso - Chillhop Essentials - Winter 2017 - 06 Snug.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/invention_ - Chillhop Essentials - Winter 2017 - 20 albedo.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/nymano x saib - Chillhop Essentials - Winter 2017 - 02 night walk.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/psalm-trees - Chillhop Essentials - Winter 2017 - 11 Prayer.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/Ian Ewing - Chillhop Essentials - Winter 2017 - 13 4-21pm.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/Underbelly X Monma - Chillhop Essentials - Winter 2017 - 03 Performative (Instrumental).flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/Brock Berrigan - Chillhop Essentials - Winter 2017 - 21 Curtain Calls.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/j'san - Chillhop Essentials - Winter 2017 - 14 cozy winter.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/Robot Orchestra - Chillhop Essentials - Winter 2017 - 12 Keep Me Warm.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/Joey Pecoraro - Chillhop Essentials - Winter 2017 - 04 Your Favorite Place.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/arbour - Chillhop Essentials - Winter 2017 - 07 sunrise.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2017/leavv - Chillhop Essentials - Winter 2017 - 05 lacuna.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/Soulchef - Chillhop Essentials - Spring 2016 - 12 Springtime.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/Mo Anando - Chillhop Essentials - Spring 2016 - 03 In Bloom.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/GlobulDub - Chillhop Essentials - Spring 2016 - 08 Foreign Exchange.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/Aso - Chillhop Essentials - Spring 2016 - 17 Coolin Out.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/GYVUS - Chillhop Essentials - Spring 2016 - 10 Tôzen.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/Mono-Massive - Chillhop Essentials - Spring 2016 - 02 Somewhat.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/Birocratic - Chillhop Essentials - Spring 2016 - 09 Castles In My Cup.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/Gorila - Chillhop Essentials - Spring 2016 - 15 Dus.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/Ao Logics - Chillhop Essentials - Spring 2016 - 04 Cat N Johnny.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/A June & J Beat - Chillhop Essentials - Spring 2016 - 13 Saturday Night Movies.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/Guggenz - Chillhop Essentials - Spring 2016 - 05 This Love I've Met.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/P.R - Chillhop Essentials - Spring 2016 - 11 Lavender.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/FloFilz - Chillhop Essentials - Spring 2016 - 14 Quintal.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/Dephrase - Chillhop Essentials - Spring 2016 - 16 Songs I Never Wrote.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/L'Indécis - Chillhop Essentials - Spring 2016 - 06 Staying There.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/Handbook - Chillhop Essentials - Spring 2016 - 07 Come Close.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2016/Brock Berrigan - Chillhop Essentials - Spring 2016 - 01 So In Love.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/fantompower - Chillhop Essentials - Fall 2018 - 15 in a new space.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/Amonos - Chillhop Essentials - Fall 2018 - 26 Montrose.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/Matt Quentin - Chillhop Essentials - Fall 2018 - 17 Just a Moment.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/idealism - Chillhop Essentials - Fall 2018 - 19 illusions.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/L'indécis x sad toï - Chillhop Essentials - Fall 2018 - 03 Dog Days.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/middle school & Taro - Chillhop Essentials - Fall 2018 - 09 At This Point (feat. Mitchel Forman).flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/Toonorth - Chillhop Essentials - Fall 2018 - 06 To The Moon And Back.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/invention_ - Chillhop Essentials - Fall 2018 - 23 ebb-flo.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/illiterate - Chillhop Essentials - Fall 2018 - 12 Bastia.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/Tane - Chillhop Essentials - Fall 2018 - 04 Yes Please.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/j'san x nymano - Chillhop Essentials - Fall 2018 - 14 autumn breeze.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/Chris Mazuera - Chillhop Essentials - Fall 2018 - 18 Equinox.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/masked man - Chillhop Essentials - Fall 2018 - 22 grandiose soul.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/plusma - Chillhop Essentials - Fall 2018 - 07 mochus.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/Flitz&Suppe - Chillhop Essentials - Fall 2018 - 02 Funkaholic.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/AJMW - Chillhop Essentials - Fall 2018 - 25 Nights In West.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/Through & Through - Chillhop Essentials - Fall 2018 - 24 Equanimity.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/Stan Forebee - Chillhop Essentials - Fall 2018 - 16 Drawing Dunes.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/Psalm Trees - Chillhop Essentials - Fall 2018 - 10 Babyyy.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/Birocratic - Chillhop Essentials - Fall 2018 - 01 Belly Breathing.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/sleepy fish x Philanthrope x mommy - Chillhop Essentials - Fall 2018 - 21 morning rises.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/B-Side - Chillhop Essentials - Fall 2018 - 05 Pen Anubis.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/Kupla - Chillhop Essentials - Fall 2018 - 11 Ruska.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/Loupo - Chillhop Essentials - Fall 2018 - 08 1993.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/Aso - Chillhop Essentials - Fall 2018 - 20 first date.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2018/delayde - Chillhop Essentials - Fall 2018 - 13 To Breathe.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Strehlow - Chillhop Essentials - Winter 2018 - 15 Mila Coolness.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Philanthrope x Yasper - Chillhop Essentials - Winter 2018 - 01 Slopes.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Blue Wednesday - Chillhop Essentials - Winter 2018 - 03 Middle School (feat. Magnus Klausen).flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Sofasound - Chillhop Essentials - Winter 2018 - 17 With All I Am.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Juan RIOS - Chillhop Essentials - Winter 2018 - 04 Petricor.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Toonorth - Chillhop Essentials - Winter 2018 - 05 Citrine.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Nokiaa x Dontcry - Chillhop Essentials - Winter 2018 - 10 Viaduct.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Melodiesinfonie - Chillhop Essentials - Winter 2018 - 02 Morning Glory.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/TESK - Chillhop Essentials - Winter 2018 - 12 Burn my Mind.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Louk x Yasper - Chillhop Essentials - Winter 2018 - 14 Captain Calvin.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/leavv - Chillhop Essentials - Winter 2018 - 25 Candle.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Aso - Chillhop Essentials - Winter 2018 - 26 Rainy Days.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Sleepy Fish - Chillhop Essentials - Winter 2018 - 20 Fall's Echos.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Hanz - Chillhop Essentials - Winter 2018 - 19 Crossroads.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Monma - Chillhop Essentials - Winter 2018 - 16 Potion.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/sad toï - Chillhop Essentials - Winter 2018 - 21 Love Affair in Kyoto.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/invention_ - Chillhop Essentials - Winter 2018 - 22 snowluv.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Osvaldo - Chillhop Essentials - Winter 2018 - 13 Embers in the Dark (feat. Garot Michael Conklin).flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Ruck P - Chillhop Essentials - Winter 2018 - 11 Gratitude.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/fantompower - Chillhop Essentials - Winter 2018 - 07 blankets.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/mommy - Chillhop Essentials - Winter 2018 - 09 polarbeer.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/a l e x - Chillhop Essentials - Winter 2018 - 24 I need to paint my walls.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Ian Ewing - Chillhop Essentials - Winter 2018 - 08 seltzy.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/BEN BADA BOOM - Chillhop Essentials - Winter 2018 - 06 Mistleflow.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/Smoke Trees - Chillhop Essentials - Winter 2018 - 23 Winter Lights.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2018/harris cole - Chillhop Essentials - Winter 2018 - 18 larkspur.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/leavv - Chillhop Essentials - Fall 2017 - 02 within.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/B-Side - Chillhop Essentials - Fall 2017 - 03 Sky.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/Keem the Cipher - Chillhop Essentials - Fall 2017 - 13 Come My Way.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/Mr.Käfer - Chillhop Essentials - Fall 2017 - 10 Settle Down.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/Monma - Chillhop Essentials - Fall 2017 - 14 Cruise Control.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/Tusken. X Philanthrope - Chillhop Essentials - Fall 2017 - 16 Mr.Toast.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/Philanthrope X Kupla - Chillhop Essentials - Fall 2017 - 11 Cycles.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/Aso - Chillhop Essentials - Fall 2017 - 17 Soul Vibe.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/Otesla - Chillhop Essentials - Fall 2017 - 20 east.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/Axian X J'san - Chillhop Essentials - Fall 2017 - 08 Autumn Leaves.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/Robot Orchestra - Chillhop Essentials - Fall 2017 - 18 GoldenBrown.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/Stan Forebee - Chillhop Essentials - Fall 2017 - 15 Our Dream.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/L'indécis - Chillhop Essentials - Fall 2017 - 05 Le Sud.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/sugiwa - Chillhop Essentials - Fall 2017 - 19 memories.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/invention - Chillhop Essentials - Fall 2017 - 06 vscrl.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/Flitz&Suppe - Chillhop Essentials - Fall 2017 - 09 Level U.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/Mono-Massive - Chillhop Essentials - Fall 2017 - 21 space drift.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/FloFilz - Chillhop Essentials - Fall 2017 - 12 Lucie.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/saib. - Chillhop Essentials - Fall 2017 - 01 West Lake.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/Devaloop - Chillhop Essentials - Fall 2017 - 04 Rooftop Terrace.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2017/badsummer - Chillhop Essentials - Fall 2017 - 07 floating.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/harris Cole - Chillhop Essentials - Spring 2019 - 25 Birds.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/Psalm Trees - Chillhop Essentials - Spring 2019 - 13 Meadows (feat. Guillaume Muschalle).flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/Blue Wednesday - Chillhop Essentials - Spring 2019 - 01 Murmuration (feat. Shopan).flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/B-Side, Yasper, Philanthrope - Chillhop Essentials - Spring 2019 - 15 Last Snow.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/sleepy fish - Chillhop Essentials - Spring 2019 - 24 I Wish It Would Never Stop Snowing.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/fantompower - Chillhop Essentials - Spring 2019 - 23 Morning Dew.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/Vhsceral - Chillhop Essentials - Spring 2019 - 18 Alamein.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/Flovry - Chillhop Essentials - Spring 2019 - 21 Laze.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/stream_error, H.1 - Chillhop Essentials - Spring 2019 - 10 City Lights.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/Ian Ewing - Chillhop Essentials - Spring 2019 - 20 leaving.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/SAINT WKND x No Spirit - Chillhop Essentials - Spring 2019 - 14 Changed My Mind.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/Moods x Philanthrope x Yasper - Chillhop Essentials - Spring 2019 - 09 Bucket List.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/Eli Way - Chillhop Essentials - Spring 2019 - 11 Daydream.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/oddfish - Chillhop Essentials - Spring 2019 - 07 Hazy....flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/invention_ - Chillhop Essentials - Spring 2019 - 17 Levitating.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/masked man - Chillhop Essentials - Spring 2019 - 04 Ish Happens.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/santpoort - Chillhop Essentials - Spring 2019 - 05 Rosemary Whispers.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/Cloudchord x G Mills - Chillhop Essentials - Spring 2019 - 02 Sunlit.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/Monma x cocabona - Chillhop Essentials - Spring 2019 - 22 Pyra.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/weird inside - Chillhop Essentials - Spring 2019 - 19 Sinkerator (feat. Dilip & quickly, quickly).flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/Plusma - Chillhop Essentials - Spring 2019 - 03 Marmots Dance.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/Nokiaa - Chillhop Essentials - Spring 2019 - 08 Blending In.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/Strehlow x Ian Ewing - Chillhop Essentials - Spring 2019 - 16 Poke Date.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/Aso - Chillhop Essentials - Spring 2019 - 06 Sunsets.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Spring 2019/Flitz&Suppe, Gas-Lab - Chillhop Essentials - Spring 2019 - 12 Slice of Life.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/GlobulDub - Chillhop Essentials - Summer 2016 - 11 Waves.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Aso - Chillhop Essentials - Summer 2016 - 14 Ultra Violet.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Imagined Herbal Flows - Chillhop Essentials - Summer 2016 - 13 Beyond The Sun.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/White Lights - Chillhop Essentials - Summer 2016 - 15 VR Helmet.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Birocratic - Chillhop Essentials - Summer 2016 - 03 Tony's Belated Breakfast.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Phoniks - Chillhop Essentials - Summer 2016 - 07 Touchdown.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Gorila - Chillhop Essentials - Summer 2016 - 08 Heatinupyabody.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Mecca-83 - Chillhop Essentials - Summer 2016 - 10 Foundation.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Brock Berrigan - Chillhop Essentials - Summer 2016 - 04 Split Decision.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Joakim Karud - Chillhop Essentials - Summer 2016 - 02 Canals.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Ol' Burger Beats - Chillhop Essentials - Summer 2016 - 17 The Gentle Instrumental.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Jeff Kaale - Chillhop Essentials - Summer 2016 - 18 Footsteps.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Philanthrope - Chillhop Essentials - Summer 2016 - 16 Isolation.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Handbook - Chillhop Essentials - Summer 2016 - 06 Melon.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Floppy Circus - Chillhop Essentials - Summer 2016 - 05 Better Days To Come.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/deeB - Chillhop Essentials - Summer 2016 - 12 Theme From Endless Sunset.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Bonus Points - Chillhop Essentials - Summer 2016 - 09 Hammock Days.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Summer 2016/Guggenz - Chillhop Essentials - Summer 2016 - 01 Business As Usual.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/FloFilz - Chillhop Essentials - Fall 2016 - 19 Orakel.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/Khudosoul - Chillhop Essentials - Fall 2016 - 09 Something Between Us (ft. Birocratic).flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/A D M B - Chillhop Essentials - Fall 2016 - 18 Master of the Sun.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/Cooper Albert - Chillhop Essentials - Fall 2016 - 10 Find a Way.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/The Cancel - Chillhop Essentials - Fall 2016 - 02 Point.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/GlobulDub - Chillhop Essentials - Fall 2016 - 05 Hinterlands.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/Aso - Chillhop Essentials - Fall 2016 - 01 Seasons.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/Mecca-83 - Chillhop Essentials - Fall 2016 - 16 From Summer to Autumn (Transition).flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/Guggenz - Chillhop Essentials - Fall 2016 - 06 Break Even.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/AJMW - Chillhop Essentials - Fall 2016 - 07 Virtues.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/Handbook - Chillhop Essentials - Fall 2016 - 08 Swansong.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/Nymano - Chillhop Essentials - Fall 2016 - 11 Sorry.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/Tantu - Chillhop Essentials - Fall 2016 - 14 Klein.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/Philanthrope - Chillhop Essentials - Fall 2016 - 04 Things Fall Apart.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/Floppy Circus - Chillhop Essentials - Fall 2016 - 15 Safari Haze.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/Deeb - Chillhop Essentials - Fall 2016 - 13 Bridges.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/Brock Berrigan - Chillhop Essentials - Fall 2016 - 03 Owl Farm.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/Bonus Points - Chillhop Essentials - Fall 2016 - 17 Long Exposure.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Fall 2016/L'Indécis - Chillhop Essentials - Fall 2016 - 12 Her.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/L'Indécis - Chillhop Essentials - Winter 2016 - 10 Rekindling.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/Flitz&Suppe - Chillhop Essentials - Winter 2016 - 11 OdeToYou.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/B-Side - Chillhop Essentials - Winter 2016 - 12 Patience.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/TESK - Chillhop Essentials - Winter 2016 - 14 FIRST LIGHTS.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/nymano - Chillhop Essentials - Winter 2016 - 07 i wish i could sleep.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/Birocratic - Chillhop Essentials - Winter 2016 - 03 Lovely Rita.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/Moose Dawa - Chillhop Essentials - Winter 2016 - 02 Menti.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/Idealism - Chillhop Essentials - Winter 2016 - 04 Snowfall.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/Invention_ - Chillhop Essentials - Winter 2016 - 01 .flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/Limes - Chillhop Essentials - Winter 2016 - 17 Wonderland.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/Melodiesinfonie - Chillhop Essentials - Winter 2016 - 06 Meditation on God.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/FloFilz & Philanthrope - Chillhop Essentials - Winter 2016 - 05 Whitecap.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/Mono-Massive - Chillhop Essentials - Winter 2016 - 09 Blue Dawn.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/Aso - Chillhop Essentials - Winter 2016 - 13 Caught in the Rain.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/Deeb - Chillhop Essentials - Winter 2016 - 16 Flakes.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/QSTN - Chillhop Essentials - Winter 2016 - 15 Me 2 You.flac
Oct 06 13:30 : update: added Chillhop/Chillhop Essentials - Winter 2016/Juan RIOS - Chillhop Essentials - Winter 2016 - 08 Pine Trees.flac
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2019 - Doom Days [US - B003042502]/08 4AM.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2019 - Doom Days [US - B003042502]/12 When I Watch the World Burn All I Think About Is You (Demo).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2019 - Doom Days [US - B003042502]/04 Divide.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2019 - Doom Days [US - B003042502]/11 Joy.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2019 - Doom Days [US - B003042502]/05 Million Pieces.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2019 - Doom Days [US - B003042502]/02 Bad Decisions.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2019 - Doom Days [US - B003042502]/10 Those Nights.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2019 - Doom Days [US - B003042502]/13 Easy Days (Demo).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2019 - Doom Days [US - B003042502]/01 Quarter Past Midnight.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2019 - Doom Days [US - B003042502]/07 Nocturnal Creatures.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2019 - Doom Days [US - B003042502]/03 The Waves.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2019 - Doom Days [US - B003042502]/09 Another Place.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2019 - Doom Days [US - B003042502]/06 Doom Days.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - VS. (Other People's Heartache, Pt. III) [EU - CDV 3133]/06 Torn Apart.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - VS. (Other People's Heartache, Pt. III) [EU - CDV 3133]/02 Bite Down.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - VS. (Other People's Heartache, Pt. III) [EU - CDV 3133]/04 The Driver.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - VS. (Other People's Heartache, Pt. III) [EU - CDV 3133]/07 Torn Apart, Pt. I.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - VS. (Other People's Heartache, Pt. III) [EU - CDV 3133]/01 Fall Into Your Arms.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - VS. (Other People's Heartache, Pt. III) [EU - CDV 3133]/05 Axe to Grind.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - VS. (Other People's Heartache, Pt. III) [EU - CDV 3133]/03 bad_news.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - VS. (Other People's Heartache, Pt. III) [EU - CDV 3133]/09 Remains.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - VS. (Other People's Heartache, Pt. III) [EU - CDV 3133]/08 Weapon.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2017 - Glory (Single Version) - Single [00602557781373]/01 Glory (Single Version).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2018 - Happier - Single [00602567973393]/01 Happier.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2017 - Basket Case - Single [00602557925623]/01 Basket Case.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/21 Send Them Off! (Bunker Sessions).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/18 Shame.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/09 Lethargy.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/14 Winter of Our Youth.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/02 The Currents.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/05 Glory.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/08 Send Them Off!.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/07 Two Evils.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/11 Blame.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/19 Final Hour.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/06 Power.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/13 Snakes.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/12 Fake It.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/03 An Act of Kindness.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/01 Good Grief.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/20 The Anchor.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/15 Way Beyond.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/10 Four Walls (The Ballad of Perry Smith).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/17 Campus.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/16 Oil on Water.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2016 - Wild World (Complete Edition) [US - B002543802]/04 Warmth.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 1/11 Laura Palmer.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 1/01 Pompeii.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 1/04 Overjoyed.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 1/02 Things We Lost in the Fire .m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 1/08 Oblivion.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 1/07 Icarus.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 1/10 Daniel in the Den.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 1/09 Flaws.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 1/12 Get Home.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 1/06 Weight of Living, Pt.II.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 1/05 These Streets.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 1/03 Bad Blood.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2018 - Other People's Heartache, Pt. 4 [00602577304767]/07 Warmth (Outro) [ft. Moss Kena].m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2018 - Other People's Heartache, Pt. 4 [00602577304767]/03 Grip.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2018 - Other People's Heartache, Pt. 4 [00602577304767]/06 The Descent (ft. Lily Moore, Moss Kena & Jacob Banks).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2018 - Other People's Heartache, Pt. 4 [00602577304767]/04 Don't Let Go (Love) [ft. Craig David, Kianja & Swarmz].m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2018 - Other People's Heartache, Pt. 4 [00602577304767]/05 Flowers (ft. Rationale & James Arthur).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2018 - Other People's Heartache, Pt. 4 [00602577304767]/01 Wild World (Intro) [ft. Kianja].m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2018 - Other People's Heartache, Pt. 4 [00602577304767]/02 Would I Lie to You (ft. Kianja, S-X & Craig David).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 2/01 Poet.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 2/13 Tuning Out….m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 2/11 What Would You Do.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 2/03 Haunt (Demo).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 2/12 Skulls.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 2/09 Of the Night.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 2/06 Durban Skies.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 2/10 The Draw.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 2/05 Sleepsong.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 2/08 Previously on Other Peoples Heartache….m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 2/07 Laughter Lines.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 2/02 The Silence.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - All This Bad Blood [EU - CDVX 3097] CD 2/04 Weight of Living, Pt.I.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - Of the Night - EP [00602537621958]/02 Oblivion (Live from Capitol Studios).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - Of the Night - EP [00602537621958]/04 Of the Night (Icarus Remix).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - Of the Night - EP [00602537621958]/05 Of the Night (Kove Remix).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - Of the Night - EP [00602537621958]/03 Of the Night (MNEK Remix).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - Of the Night - EP [00602537621958]/01 Of the Night.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - Pompeii - Single [GB - VSCDJ2057]/01 Pompeii.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2013 - Pompeii - Single [GB - VSCDJ2057]/02 Pompeii (Instrumental).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - Oblivion - EP [00602547000194]/03 Pompeii (Live with Film Orchestra).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - Oblivion - EP [00602547000194]/04 Bad Blood (Live Piano Version).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - Oblivion - EP [00602547000194]/05 Oblivion (Slinger Remix).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - Oblivion - EP [00602547000194]/02 bad_news.m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - Oblivion - EP [00602547000194]/06 bad_news (Instrumental).m4a
Oct 06 13:30 : ffmpeg/mov,mp4,m4a,3gp,3g2,mj2: stream 0, timescale not set
Oct 06 13:30 : update: added Bastille/Bastille ALAC/2014 - Oblivion - EP [00602547000194]/01 Oblivion.m4a
Oct 06 13:30 : update: added Joji/Ballads 1/05 - CAN'T GET OVER YOU (Feat. Clams Casino).flac
Oct 06 13:30 : update: added Joji/Ballads 1/01 - Attention.flac
Oct 06 13:30 : update: added Joji/Ballads 1/11 - XNXX.flac
Oct 06 13:30 : update: added Joji/Ballads 1/10 - R.I.P. (Feat. Trippie Redd).flac
Oct 06 13:30 : update: added Joji/Ballads 1/07 - WHY AM I STILL IN LA (Feat. Shlohmo & D33J).flac
Oct 06 13:30 : update: added Joji/Ballads 1/09 - Come Thru.flac
Oct 06 13:30 : update: added Joji/Ballads 1/02 - Slow Dancing In The Dark.flac
Oct 06 13:30 : update: added Joji/Ballads 1/04 - Wanted U.flac
Oct 06 13:30 : update: added Joji/Ballads 1/12 - I'll See You In 40.flac
Oct 06 13:30 : update: added Joji/Ballads 1/03 - Test Drive.flac
Oct 06 13:30 : update: added Joji/Ballads 1/06 - Yeah Right.flac
Oct 06 13:30 : update: added Joji/Ballads 1/08 - No Fun.flac
Oct 06 13:30 : update: added Nick Hilaire/The Starry Night.mp3
Oct 06 13:30 : update: added Nick Hilaire/Beautiful Thoughts.mp3
Oct 06 13:30 : update: added Nick Hilaire/The Thoughts of Childhood.mp3
Oct 06 13:30 : update: added Nick Hilaire/The Evening.mp3
Oct 06 13:30 : update: added Nick Hilaire/The Progression.mp3
Oct 06 13:30 : update: added First of October/05. Don't Go.mp3
Oct 06 13:30 : update: added First of October/10. Possible Band Names.mp3
Oct 06 13:30 : update: added First of October/07. Things to Do.mp3
Oct 06 13:30 : update: added First of October/03. Two Friends.mp3
Oct 06 13:30 : update: added First of October/04. Don't Go to My House.mp3
Oct 06 13:30 : update: added First of October/06. Rollerbladin'.mp3
Oct 06 13:30 : update: added First of October/01. Woo!.mp3
Oct 06 13:30 : update: added First of October/09. Spoilers for Playdead's Inside.mp3
Oct 06 13:30 : update: added First of October/02. Can't Be Stopped.mp3
Oct 06 13:30 : update: added First of October/08. Always.mp3

403
mpd/.config/mpd/mpd.conf Executable file
View File

@ -0,0 +1,403 @@
# An example configuration file for MPD.
# Read the user manual for documentation: http://www.musicpd.org/doc/user/
# Files and directories #######################################################
#
# This setting controls the top directory which MPD will search to discover the
# available audio files and add them to the daemon's online database. This
# setting defaults to the XDG directory, otherwise the music directory will be
# be disabled and audio files will only be accepted over ipc socket (using
# file:// protocol) or streaming files over an accepted protocol.
#
music_directory "~/Music/Listen"
#
# This setting sets the MPD internal playlist directory. The purpose of this
# directory is storage for playlists created by MPD. The server will use
# playlist files not created by the server but only if they are in the MPD
# format. This setting defaults to playlist saving being disabled.
#
playlist_directory "~/.config/mpd/playlists"
#
# This setting sets the location of the MPD database. This file is used to
# load the database at server start up and store the database while the
# server is not up. This setting defaults to disabled which will allow
# MPD to accept files over ipc socket (using file:// protocol) or streaming
# files over an accepted protocol.
#
db_file "~/.config/mpd/database"
#
# These settings are the locations for the daemon log files for the daemon.
# These logs are great for troubleshooting, depending on your log_level
# settings.
#
# The special value "syslog" makes MPD use the local syslog daemon. This
# setting defaults to logging to syslog.
#
log_file "syslog"
#
# This setting sets the location of the file which stores the process ID
# for use of mpd --kill and some init scripts. This setting is disabled by
# default and the pid file will not be stored.
#
pid_file "~/.config/mpd/pid"
#
# This setting sets the location of the file which contains information about
# most variables to get MPD back into the same general shape it was in before
# it was brought down. This setting is disabled by default and the server
# state will be reset on server start up.
#
state_file "~/.config/mpd/state"
#
# The location of the sticker database. This is a database which
# manages dynamic information attached to songs.
#
sticker_file "~/.config/mpd/sticker.sql"
#
###############################################################################
# General music daemon options ################################################
#
# This setting specifies the user that MPD will run as. MPD should never run as
# root and you may use this setting to make MPD change its user ID after
# initialization. This setting is disabled by default and MPD is run as the
# current user.
#
#user "nobody"
#
# This setting specifies the group that MPD will run as. If not specified
# primary group of user specified with "user" setting will be used (if set).
# This is useful if MPD needs to be a member of group such as "audio" to
# have permission to use sound card.
#
#group "nogroup"
#
# This setting sets the address for the daemon to listen on. Careful attention
# should be paid if this is assigned to anything other then the default, any.
# This setting can deny access to control of the daemon. Not effective if
# systemd socket activiation is in use.
#
# For network
bind_to_address "127.0.0.1"
#
# And for Unix Socket
#bind_to_address "~/.mpd/socket"
#
# This setting is the TCP port that is desired for the daemon to get assigned
# to.
#
#port "6600"
#
# This setting controls the type of information which is logged. Available
# setting arguments are "default", "secure" or "verbose". The "verbose" setting
# argument is recommended for troubleshooting, though can quickly stretch
# available resources on limited hardware storage.
#
#log_level "default"
#
# Setting "restore_paused" to "yes" puts MPD into pause mode instead
# of starting playback after startup.
#
#restore_paused "no"
#
# This setting enables MPD to create playlists in a format usable by other
# music players.
#
#save_absolute_paths_in_playlists "no"
#
# This setting defines a list of tag types that will be extracted during the
# audio file discovery process. The complete list of possible values can be
# found in the user manual.
#metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
#
# This example just enables the "comment" tag without disabling all
# the other supported tags:
#metadata_to_use "+comment"
#
# This setting enables automatic update of MPD's database when files in
# music_directory are changed.
#
#auto_update "yes"
#
# Limit the depth of the directories being watched, 0 means only watch
# the music directory itself. There is no limit by default.
#
#auto_update_depth "3"
#
###############################################################################
# Symbolic link behavior ######################################################
#
# If this setting is set to "yes", MPD will discover audio files by following
# symbolic links outside of the configured music_directory.
#
#follow_outside_symlinks "yes"
#
# If this setting is set to "yes", MPD will discover audio files by following
# symbolic links inside of the configured music_directory.
#
#follow_inside_symlinks "yes"
#
###############################################################################
# Zeroconf / Avahi Service Discovery ##########################################
#
# If this setting is set to "yes", service information will be published with
# Zeroconf / Avahi.
#
#zeroconf_enabled "yes"
#
# The argument to this setting will be the Zeroconf / Avahi unique name for
# this MPD server on the network. %h will be replaced with the hostname.
#
#zeroconf_name "Music Player @ %h"
#
###############################################################################
# Permissions #################################################################
#
# If this setting is set, MPD will require password authorization. The password
# setting can be specified multiple times for different password profiles.
#
#password "password@read,add,control,admin"
#
# This setting specifies the permissions a user has who has not yet logged in.
#
#default_permissions "read,add,control,admin"
#
###############################################################################
# Database #######################################################################
#
#database {
# plugin "proxy"
# host "other.mpd.host"
# port "6600"
#}
# Input #######################################################################
#
input {
plugin "curl"
# proxy "proxy.isp.com:8080"
# proxy_user "user"
# proxy_password "password"
}
#
###############################################################################
# Audio Output ################################################################
#
# MPD supports various audio output types, as well as playing through multiple
# audio outputs at the same time, through multiple audio_output settings
# blocks. Setting this block is optional, though the server will only attempt
# autodetection for one sound card.
#
audio_output {
type "pulse"
name "pulse audio"
}
audio_output {
type "fifo"
name "my_fifo"
path "/tmp/mpd.fifo"
format "44100:16:2"
}
# An example of an ALSA output:
#
#audio_output {
# type "alsa"
# name "My ALSA Device"
## device "hw:0,0" # optional
## mixer_type "hardware" # optional
## mixer_device "default" # optional
## mixer_control "PCM" # optional
## mixer_index "0" # optional
#}
#
# An example of an OSS output:
#
#audio_output {
# type "oss"
# name "My OSS Device"
## device "/dev/dsp" # optional
## mixer_type "hardware" # optional
## mixer_device "/dev/mixer" # optional
## mixer_control "PCM" # optional
#}
#
# An example of a shout output (for streaming to Icecast):
#
#audio_output {
# type "shout"
# encoder "vorbis" # optional
# name "My Shout Stream"
# host "localhost"
# port "8000"
# mount "/mpd.ogg"
# password "hackme"
# quality "5.0"
# bitrate "128"
# format "44100:16:1"
## protocol "icecast2" # optional
## user "source" # optional
## description "My Stream Description" # optional
## url "http://example.com" # optional
## genre "jazz" # optional
## public "no" # optional
## timeout "2" # optional
## mixer_type "software" # optional
#}
#
# An example of a recorder output:
#
#audio_output {
# type "recorder"
# name "My recorder"
# encoder "vorbis" # optional, vorbis or lame
# path "/var/lib/mpd/recorder/mpd.ogg"
## quality "5.0" # do not define if bitrate is defined
# bitrate "128" # do not define if quality is defined
# format "44100:16:1"
#}
#
# An example of a httpd output (built-in HTTP streaming server):
#
#audio_output {
# type "httpd"
# name "My HTTP Stream"
# encoder "vorbis" # optional, vorbis or lame
# port "8000"
# bind_to_address "0.0.0.0" # optional, IPv4 or IPv6
## quality "5.0" # do not define if bitrate is defined
# bitrate "128" # do not define if quality is defined
# format "44100:16:1"
# max_clients "0" # optional 0=no limit
#}
#
# An example of a pulseaudio output (streaming to a remote pulseaudio server)
#
#audio_output {
# type "pulse"
# name "My Pulse Output"
## server "remote_server" # optional
## sink "remote_server_sink" # optional
#}
#
# An example of a winmm output (Windows multimedia API).
#
#audio_output {
# type "winmm"
# name "My WinMM output"
## device "Digital Audio (S/PDIF) (High Definition Audio Device)" # optional
# or
## device "0" # optional
## mixer_type "hardware" # optional
#}
#
# An example of an openal output.
#
#audio_output {
# type "openal"
# name "My OpenAL output"
## device "Digital Audio (S/PDIF) (High Definition Audio Device)" # optional
#}
#
# An example of an sndio output.
#
#audio_output {
# type "sndio"
# name "sndio output"
# mixer_type "hardware"
#}
#
# An example of an OS X output:
#
#audio_output {
# type "osx"
# name "My OS X Device"
## device "Built-in Output" # optional
## channel_map "-1,-1,0,1" # optional
#}
#
## Example "pipe" output:
#
#audio_output {
# type "pipe"
# name "my pipe"
# command "aplay -f cd 2>/dev/null"
## Or if you're want to use AudioCompress
# command "AudioCompress -m | aplay -f cd 2>/dev/null"
## Or to send raw PCM stream through PCM:
# command "nc example.org 8765"
# format "44100:16:2"
#}
#
## An example of a null output (for no audio output):
#
#audio_output {
# type "null"
# name "My Null Output"
# mixer_type "none" # optional
#}
#
###############################################################################
# Normalization automatic volume adjustments ##################################
#
# This setting specifies the type of ReplayGain to use. This setting can have
# the argument "off", "album", "track" or "auto". "auto" is a special mode that
# chooses between "track" and "album" depending on the current state of
# random playback. If random playback is enabled then "track" mode is used.
# See <http://www.replaygain.org> for more details about ReplayGain.
# This setting is off by default.
#
#replaygain "album"
#
# This setting sets the pre-amp used for files that have ReplayGain tags. By
# default this setting is disabled.
#
#replaygain_preamp "0"
#
# This setting sets the pre-amp used for files that do NOT have ReplayGain tags.
# By default this setting is disabled.
#
#replaygain_missing_preamp "0"
#
# This setting enables or disables ReplayGain limiting.
# MPD calculates actual amplification based on the ReplayGain tags
# and replaygain_preamp / replaygain_missing_preamp setting.
# If replaygain_limit is enabled MPD will never amplify audio signal
# above its original level. If replaygain_limit is disabled such amplification
# might occur. By default this setting is enabled.
#
#replaygain_limit "yes"
#
# This setting enables on-the-fly normalization volume adjustment. This will
# result in the volume of all playing audio to be adjusted so the output has
# equal "loudness". This setting is disabled by default.
#
#volume_normalization "no"
#
###############################################################################
# Character Encoding ##########################################################
#
# If file or directory names do not display correctly for your locale then you
# may need to modify this setting.
#
#filesystem_charset "UTF-8"
#
###############################################################################

1
mpd/.config/mpd/pid Normal file
View File

@ -0,0 +1 @@
801

42
mpd/.config/mpd/state Normal file
View File

@ -0,0 +1,42 @@
sw_volume: 100
audio_device_state:1:pulse audio
audio_device_state:1:my_fifo
state: play
current: 9
time: 4.075000
random: 0
repeat: 0
single: 0
consume: 0
crossfade: 0
mixrampdb: 0.000000
mixrampdelay: -1.000000
playlist_begin
0:Hozier/05. To Be Alone.flac
1:Josh Ritter/06. Silverblade.flac
2:Josh Ritter/10. Blazing Highway Home.flac
3:Hozier/04. Someone New.flac
4:Josh Ritter/02. Old Black Magic.flac
5:Hozier/06. From Eden.flac
6:Hozier/17. My Love Will Never Die.flac
7:Josh Ritter/04. I Still Love You (Now and Then).flac
8:Hozier/14. In the Woods Somewhere.flac
9:Josh Ritter/03. On the Water.flac
10:Josh Ritter/09. A New Man.flac
11:Hozier/01. Take Me To Church.flac
12:Hozier/09. Work Song.flac
13:Josh Ritter/08. Losing Battles.flac
14:Josh Ritter/05. The Torch Committee.flac
15:Josh Ritter/01. Ground Don't Want Me.flac
16:Hozier/02. Angel of Small Death & the Codeine Scene.flac
17:Hozier/08. Sedated.flac
18:Hozier/11. It Will Come Back.flac
19:Hozier/15. Run.flac
20:Hozier/07. In a Week (feat Karen Cowley).flac
21:Josh Ritter/07. All Some Kind of Dream.flac
22:Hozier/16. Arsonist's Lullabye.flac
23:Hozier/12. Foreigner's God.flac
24:Hozier/10. Like Real People Do.flac
25:Hozier/13. Cherry Wine (Live).flac
26:Hozier/03. Jackie and Wilson.flac
playlist_end

BIN
mpd/.config/mpd/sticker.sql Executable file

Binary file not shown.

View File

@ -52,7 +52,7 @@ module-margin-left = 1
module-margin-right = 2
font-0 = "Fira Code:size=8"
font-1 = "Font Awesome:size=9"
modules-center = pulseaudio
modules-center = mpd pulseaudio
cursor-click = pointer
cursor-scroll = ns-resize
tray-position = right

View File

@ -31,6 +31,7 @@ plugins=(
# Tab completion
autoload -U compinit
zstyle ':completion:*' menu select
zstyle ':completion::complete:*' gain-privileges 1
zmodload zsh/complist
compinit
_comp_options+=(globdots) # include hidden files
@ -57,6 +58,5 @@ alias vim="nvim"
alias v="nvim"
alias ssh="ssh -Y"
unset zle_bracketed_paste
clear
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh