i3, mpd: Prepare for a music player overhaul

This commit is contained in:
Salt 2019-08-13 03:23:37 -05:00
parent 7d97587860
commit ed6e410e06
2 changed files with 57 additions and 0 deletions

View File

@ -19,6 +19,7 @@ exec --no-startup-id dunst
exec --no-startup-id /usr/lib/x86_64-linux-gnu/polkit-mate/polkit-mate-authentication-agent-1
exec --no-startup-id /usr/lib/polkit-mate/polkit-mate-authentication-agent-1
exec --no-startup-id mate-power-manager
exec --no-startup-id mpd
# XDG
exec --no-startup-id "dex -a"
@ -76,6 +77,7 @@ for_window [class="Thunderbird" ] move to workspace $w7
for_window [class="discord"] move to workspace $w8
for_window [class="Spotify"] move to workspace $w8
for_window [class="Audacious"] move to workspace $w8
for_window [class="Sonata"] move to workspace $w8
# Miscellaneous window rules
for_window [title="Minecraft 1.7.10"] fullscreen enable

55
.config/mpd/mpd.conf Normal file
View File

@ -0,0 +1,55 @@
#
# Salt's MPD configuration
# gitlab.com/rehashedsalt/home
#
# DIRECTORIES
#music_directory "~/Music"
playlist_directory "~/Music/Playlists"
db_file "~/.local/share/mpd/database"
log_file "~/.local/share/mpd/log"
# Disabled by default
pid_file "~/.local/share/mpd/pid"
state_file "~/.local/share/mpd/state"
sticker_file "~/.local/share/mpd/sticker.sql"
# INPUT CONFIG
# Why the hell are these even still here?
input {
plugin "tidal"
enabled "no"
}
input {
plugin "qobuz"
enabled "no"
}
# DECODER CONFIG
decoder {
plugin "opus"
enabled "yes"
}
# OUTPUT CONFIG
audio_output {
type "pulse"
name "Local Pulse"
## server "remote_server" # optional
## sink "remote_server_sink" # optional
## media_role "media_role" #optional
}
# GENERAL CONFIG
log_level "default"
restore_paused "yes"
save_absolute_paths_in_playlists "yes"
# DATABASE CONFIG
auto_update "yes"
#auto_update_depth "3"
# 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"