cmus status notification tool written in Rust, which can be easily configured and used for different purposes. It provides notifications for track changes, status changes, volume, playing mode and more
Go to file
renovate[bot] 1ae8c702f1
Add renovate.json
2023-03-08 23:09:29 +00:00
.github/workflows Create .github/workflows/rust.yml 2023-02-24 03:31:24 +02:00
.idea Remove gapage configs :| 2023-02-24 03:04:12 +02:00
docs Create the base readme file 2023-02-24 02:22:37 +02:00
screenshots [ImgBot] Optimize images 2023-02-24 01:54:11 +00:00
src Just format the code 2023-02-24 02:30:08 +02:00
tests/samples [ImgBot] Optimize images 2023-02-24 01:54:11 +00:00
.gitignore Initialize yoo 2023-02-03 17:12:23 +02:00
.mergify.yml ci(Mergify): configuration update 2023-02-24 02:58:10 +02:00
Cargo.lock Add the metadata 2023-02-24 02:40:31 +02:00
Cargo.toml Add the metadata 2023-02-24 02:40:31 +02:00
LICENSE Create LICENSE 2023-02-24 02:51:57 +02:00
README.md Update README with instructions for using the nightly version of Rust 2023-02-24 03:36:46 +02:00
justfile Just create more tasks 2023-02-24 02:11:40 +02:00
renovate.json Add renovate.json 2023-03-08 23:09:29 +00:00

README.md

cmus-notify: This program is a cmus status notification tool written in Rust, which can be easily configured and used for different purposes. It provides notifications for track changes, status changes, volume, playing mood and more

track change notification another track change notification live action

Note: This project is still in its early stages and is not yet ready for production use. It is currently being developed as a just-for-fun project. If you are interested in contributing, please feel free to open an issue or a pull request.

Installation

  • You can install the latest release from crates.io using cargo install cmus-notify
  • You can also install the latest version from the git repository using cargo install --git https://github.com/anas-elgarhy/cmus-notify
  • Or if you use Arch Linux, you can install the AUR package using your favorite AUR helper. e.g. yay -S notify-cmus

Usage

  • Run cmus-notify in your terminal to start the program, the program will run in the background and will notify you about cmus status changes
  • You can also run cmus-notify --help to see the available options, also you can see the available options in the usage
  • You also have the ability to configure the program using a configuration file, you basically have the same options as the command line arguments, but you can also use the configuration file to set the default values for the command line arguments, the default configuration file path is ~/.config/cmus-notify/config.toml, you can also use the --config option to specify a custom configuration file path, the default config file will be created in ~/.config/cmus-notify/config.toml if it doesn't exist
  • The recommended way to use the program is to run it in the background when you start the cmus music player, you can do that by creating an alias for cmus in your shell configuration file, e.g. alias cmus="cmus & cmus-notify --link", the --link option will link the cmus-notify process to the cmus process, so when you close cmus the cmus-notify process will also be terminated

Development

  • This project is written in Rust, so you need to have Rust installed on your system, you can install Rust using rustup
  • You need to use the nightly version of Rust, you can install it using rustup install nightly, and then set it as the default toolchain using rustup default nightly
  • This project, like most Rust projects, uses cargo as the build system. But to make my life easier I decided to use just as a task runner, so you need to install just using cargo install just

Just tasks

  • To build the project, run just build in the debug mode with all the features enabled
  • To build the project in the release mode, run just build--release with all the features enabled
  • To build and run the project, run just run, this will build the project in the debug mode and run it with the debug log level
  • You can use just c, to run cargo check with all the features enabled
  • You can use just t, to run cargo test with all the features enabled
  • You can use just show-help, to show the help message for the cmus-notify program
  • You can use just coverage-report, to generate a coverage report for the project, and open it in the default browser, the report will be generated in the target/coverage directory, this task requires grcov to be installed on your system You can see the all the available tasks and aliases in the justfile, or by running just --list