cava config, hyprland changes

This commit is contained in:
2025-06-29 18:51:28 +02:00
parent c18beb0483
commit 2d0a133dd9
4 changed files with 53 additions and 15 deletions

22
modules/hm/cava.nix Normal file
View File

@ -0,0 +1,22 @@
let
colors = import ../gruvbox-theme.nix;
in {
programs.cava = {
enable = true;
settings = {
general = {
framerate = 60;
bar_spacing = 0;
};
input.method = "pipewire";
output.channels = "mono";
color = {
gradient = 1;
gradient_count = 2;
gradient_color_1 = "'${colors.gruvbox.aqua}'";
gradient_color_2 = "'${colors.gruvbox.orange}'";
};
smoothing.noise_reduction = 0.8;
};
};
}