mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
27 lines
448 B
Plaintext
27 lines
448 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# mpd
|
|
|
|
> Music Player Daemon.
|
|
> See also: `mpc`, `ncmpcpp`.
|
|
> More information: <https://mpd.readthedocs.io/en/stable/mpd.1.html>.
|
|
|
|
- Start MPD:
|
|
|
|
`mpd`
|
|
|
|
- Start MPD but don't read from the configuration file:
|
|
|
|
`mpd --no-config`
|
|
|
|
- Start MPD and don't detach it from the console:
|
|
|
|
`mpd --no-daemon`
|
|
|
|
- Kill the currently running MPD session:
|
|
|
|
`mpd --kill`
|