-
-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: Improve README usage instructions #7
base: main
Are you sure you want to change the base?
Conversation
2. Copy the contents of _flavour_.cava into your Cava config file, as specified in [Cava's README](https://github.com/karlstav/cava#configuration). Typically, the config file is located at: `~/.config/cava/`. Ensure you replace the existing gradient settings. | ||
|
||
> [!WARNING] | ||
> Running any of the commands below may overwrite your existing cava configuration file. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might be worth noting that this won't override the primary cava config, but will instead put the port colours alongside it.
@@ -18,9 +18,43 @@ | |||
## Usage | |||
|
|||
1. Choose your flavour. | |||
2. Copy the contents of _flavour_.cava into your Cava config file (usually located at: `$HOME/.config/cava/`), replacing the existing gradient settings. | |||
2. Copy the contents of _flavour_.cava into your Cava config file, as specified in [Cava's README](https://github.com/karlstav/cava#configuration). Typically, the config file is located at: `~/.config/cava/`. Ensure you replace the existing gradient settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to the Cava docs, the file is located at ~/.config/cava/config
, rather than ~/.config/cava
. We should be specific.
|
||
> [!WARNING] | ||
> Running any of the commands below may overwrite your existing cava configuration file. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be better to provide a cURL example instead? Is it more commonly installed OOTB than wget?
```sh | ||
wget -O ~/.config/cava/config https://github.com/catppuccin/cava/raw/main/mocha.cava | ||
``` | ||
|
||
3. Reload cava if it was already playing. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to the Cava docs, you can reload Cava without restarting by sending it SIGUSR1
:
$ pkill -USR1 cava
Is it worth noting this?
No description provided.