mpd: Update configuration
This commit is contained in:
parent
8b52da88e8
commit
5e5d218132
2 changed files with 15 additions and 4 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -12,6 +12,9 @@ nvim/.local/share/nvim/swap/
|
||||||
nvim/.config/nvim/plugin/packer_compiled.lua
|
nvim/.config/nvim/plugin/packer_compiled.lua
|
||||||
fish/.config/fish/fish_variables
|
fish/.config/fish/fish_variables
|
||||||
mpd/.config/mpd/database
|
mpd/.config/mpd/database
|
||||||
|
mpd/.config/mpd/state
|
||||||
|
mpd/.config/mpd/playlists
|
||||||
|
mpd/.config/mpd/sticker.sql
|
||||||
lazygit/.config/lazygit/state.yml
|
lazygit/.config/lazygit/state.yml
|
||||||
__pycache__
|
__pycache__
|
||||||
__init__.py
|
__init__.py
|
||||||
|
|
|
@ -1,9 +1,17 @@
|
||||||
db_file "~/.config/mpd/database"
|
state_file "~/.config/mpd/state"
|
||||||
|
playlist_directory "~/.config/mpd/playlists"
|
||||||
|
sticker_file "~/.config/mpd/sticker.sql"
|
||||||
log_file "syslog"
|
log_file "syslog"
|
||||||
music_directory "~/Music"
|
music_directory "~/Music"
|
||||||
auto_update "yes"
|
auto_update "yes"
|
||||||
|
|
||||||
audio_output {
|
database {
|
||||||
type "pulse"
|
plugin "simple"
|
||||||
name "pulse audio"
|
path "~/.config/mpd/database"
|
||||||
|
cache_directory "~/.config/mpd/cache"
|
||||||
|
}
|
||||||
|
|
||||||
|
audio_output {
|
||||||
|
type "pipewire"
|
||||||
|
name "MPD PipeWire"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue