-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clarify argument documentation slightly
- Loading branch information
Showing
1 changed file
with
10 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
Simple dmenu frontend for MPD. | ||
# mpdmenu | ||
|
||
# Arguments | ||
Simple [dmenu](https://tools.suckless.org/dmenu/) frontend for [MPD](https://www.musicpd.org/). | ||
|
||
Pass mpdmenu arguments first, followed by any dmenu arguments. They are separated by `::`. For example: | ||
### Usage | ||
|
||
mpdmenu -p :: -sb '#000000' | ||
$ mpdmenu [-p | -l] [:: DMENU_ARGS] | ||
-p playlist mode, selects a track from the current playlist | ||
-l library mode (default), descends artists and albums | ||
|
||
Additional arguments for `dmenu` can be passed after `::`. | ||
For example: | ||
|
||
`-l` is library mode (default), which descends artists and albums. `-p` is | ||
playlist mode, which selects a track from the current playlist. | ||
mpdmenu -p :: -sb '#000000' |