cmus-status-line

Table of Contents


Description

Prints the current cmus playback status in a customizable format to stdout.
Example output with default config: ``` $ cmus-status-line # When PLAYING  Undertale - Megalovania  <###----->

$ cmus-status-line # When PAUSED  Underta... <#--> ```

Installation

Binaries

TODO: Build and upload binaries!
Binaries for Linux and Windows are available from the GitHub releases page.

Install from [crates.io]

TODO: Upload to crates.io!
cargo install cmus-status-line

Usage

Simply run the command without any arguments
to get the formatted cmus playback status: $ cmus-status-line  Undertale - Megalovania  <###----->

For more details, see cmus-status-line --help: ``` Prints cmus playback information in a configurable format to stdout

USAGE: cmus-status-line [OPTIONS] [COMMAND]

OPTIONS: -h, --help Print this help message and exit. -v, --version Print version information and exit.

COMMANDS: status Print the current cmus playback status with the format configured in the config.toml file. This is the default command, so you may omit this argument. dump-config Print the default config as TOML to stdout. To write the default config to the proper config file, run something like: mkdir -p ~/.config/cmus-status-line cmus-status-line dump-config > ~/.config/cmus-status-line/config.toml help Print this help message and exit. ```

Configuration

The goal for this project, was to make the status line's format highly configurable.
You can configure the format as a string in the config.toml file.
To get started, run the following to dump the default config to the proper config directory:
(This assumes you are on Linux, for Windows or MacOS find your appropriate config directory here:
https://docs.rs/dirs/2.0.2/dirs/fn.config_dir.html) mkdir -p ~/.config/cmus-status-line cmus-status-line dump-config > ~/.config/cmus-status-line/config.toml

The default configuration is in the config.toml file.

Simple configuration example

Here's a small and simple configuration example to get you started,
if you don't want to / don't have the time to read the details: format = """ %{Title} - %{ProgressBar("<####---->")} """

The format key

The configuration has a format key, which is a string.

Any plain text in the string is simply printed in the format,
so a format string with this value: format = "my cmus status!" would simply print my cmus status!.
Any new-line characters are ignored.
To add dynamic content, you can use the %{...} syntax to inject information,
for example: format = "playing song: %{Title}" would replace the %{Title} part with the currently playing song's title.
We call the Title part a FormatPart.

FormatPart

enum FormatPart
Any of the following format parts can be used
in the format string inside %{...} blocks.
They will be replaced with a string value.

FormatExpression

enum FormatExpression
A FormatExpression can be used as the first argument to
If FormatParts. They will always evaluate to either true or false.


License

Distributed under the terms of the MIT license.