mmtc/README.md

110 lines
3.7 KiB
Markdown
Raw Normal View History

2020-10-21 16:47:41 +00:00
# mmtc
[![release](https://img.shields.io/github/v/release/figsoda/mmtc?logo=github&style=flat-square)](https://github.com/figsoda/mmtc/releases)
2021-03-16 14:34:50 +00:00
[![version](https://img.shields.io/crates/v/mmtc?logo=rust&style=flat-square)][crate]
2022-05-04 17:00:11 +00:00
[![deps](https://deps.rs/repo/github/figsoda/mmtc/status.svg?style=flat-square&compact=true)](https://deps.rs/repo/github/figsoda/mmtc)
[![license](https://img.shields.io/badge/license-MPL--2.0-blue?style=flat-square)](https://www.mozilla.org/en-US/MPL/2.0)
2022-12-23 19:56:08 +00:00
[![ci](https://img.shields.io/github/actions/workflow/status/figsoda/mmtc/ci.yml?label=ci&logo=github-actions&style=flat-square)](https://github.com/figsoda/mmtc/actions?query=workflow:ci)
2020-11-11 13:47:23 +00:00
Minimal [mpd](https://github.com/musicplayerdaemon/mpd) terminal client that aims to be simple yet highly configurable
2021-02-07 18:48:12 +00:00
- [Installation](#installation)
- [Building from source](#building-from-source)
- [Usage](#usage)
- [Environment variables](#environment-variables)
- [Key bindings](#key-bindings)
2020-11-07 18:12:06 +00:00
- [Configuration.md]
- [CHANGELOG.md]
2020-11-13 17:03:37 +00:00
## Installation
2021-02-11 15:28:53 +00:00
[![repology](https://repology.org/badge/vertical-allrepos/mmtc.svg)](https://repology.org/project/mmtc/versions)
The latest precompiled binaries are available on [github](https://github.com/figsoda/mmtc/releases/latest).
2021-03-16 14:34:50 +00:00
Alternatively you can install mmtc from [crates.io][crate] with cargo.
```sh
2021-02-05 15:54:50 +00:00
cargo install mmtc
```
## Building from source
```sh
2021-02-05 15:54:50 +00:00
cargo build --release
```
## Usage
```
2022-10-27 16:12:28 +00:00
Usage: mmtc [OPTIONS]
Options:
--clear-query-on-play Clear query on play
-C, --cmd [<CMD>...] Run mpd commands and exit
--cycle Cycle through the queue
--no-clear-query-on-play Don't clear query on play
--no-cycle Don't cycle through the queue
--address <address> Specify the address of the mpd server
-c, --config <file> Specify the config file
--jump-lines <number> The number of lines to jump
--seek-secs <number> The time to seek in seconds
--ups <number> The amount of status updates per second
-h, --help Print help information (use `--help` for more detail)
-V, --version Print version information
```
## Environment variables
Setting both `MPD_HOST` and `MPD_PORT` is the equalvalent of `--address $MPD_HOST:$MPD_PORT`
Precedence: command line arguments > environment variables > configuration file
2020-11-03 00:34:18 +00:00
## Key bindings
Key | Action
-|-
2020-12-21 23:53:56 +00:00
<kbd>q</kbd> or <kbd>Ctrl</kbd> + <kbd>q</kbd> | quit mmtc
<kbd>r</kbd> | toggle repeat
<kbd>R</kbd> | toggle random
<kbd>s</kbd> | toggle single
<kbd>S</kbd> | toggle oneshot
<kbd>c</kbd> | toggle consume
<kbd>p</kbd> | toggle pause
<kbd>;</kbd> | stop
<kbd>h</kbd> or <kbd>Left</kbd> | seek backwards
<kbd>l</kbd> or <kbd>Right</kbd> | seek forwards
<kbd>H</kbd> | previous song
<kbd>L</kbd> | next song
<kbd>Enter</kbd> | play selected song or quit searching mode if in searching mode
<kbd>Space</kbd> | select current song or the first song in the queue
<kbd>j</kbd>, <kbd>Down</kbd>, or <kbd>ScrollDown</kbd> | go down in the queue
<kbd>k</kbd>, <kbd>Up</kbd>, or <kbd>ScrollUp</kbd> | go up in the queue
<kbd>J</kbd>, <kbd>Ctrl</kbd> + <kbd>d</kbd>, or <kbd>PageDown</kbd> | jump down in the queue
<kbd>K</kbd>, <kbd>Ctrl</kbd> + <kbd>u</kbd>, or <kbd>PageUp</kbd> | jump up in the queue
<kbd>g</kbd> | go to the top of the queue
<kbd>G</kbd> | go to the bottom of the queue
2020-12-21 23:53:56 +00:00
<kbd>/</kbd> | enter searching mode
<kbd>Ctrl</kbd> + <kbd>u</kbd> | empty search query
2020-12-21 23:53:56 +00:00
<kbd>Escape</kbd> | quit searching mode and empty query
2020-11-03 00:34:18 +00:00
2020-11-03 16:28:42 +00:00
## Configuration
2020-11-07 18:12:06 +00:00
See [Configuration.md]
2020-11-03 16:28:42 +00:00
## Changelog
2020-11-07 18:12:06 +00:00
See [CHANGELOG.md]
2021-01-15 21:28:28 +00:00
[CHANGELOG.md]: CHANGELOG.md
2021-03-16 14:34:50 +00:00
[Configuration.md]: Configuration.md
[crate]: https://crates.io/crates/mmtc