Add cava back, update some hyprland binds to use nixpkgs paths
This commit is contained in:
parent
048d44ce6d
commit
2dadd171e9
|
@ -361,17 +361,17 @@
|
||||||
# Terminal utilities
|
# Terminal utilities
|
||||||
"SUPER, S, exec, ${
|
"SUPER, S, exec, ${
|
||||||
withTerm {
|
withTerm {
|
||||||
progname = "btm";
|
progname = "${config.programs.bottom.package}/bin/btm";
|
||||||
args = btm_args;
|
args = btm_args;
|
||||||
}
|
}
|
||||||
}"
|
}"
|
||||||
"SUPER SHIFT, S, exec, ${
|
"SUPER SHIFT, S, exec, ${
|
||||||
withTerm {
|
withTerm {
|
||||||
progname = "btm";
|
progname = "${config.programs.bottom.package}/bin/btm";
|
||||||
args = btm_args + " --basic";
|
args = btm_args + " --basic";
|
||||||
}
|
}
|
||||||
}"
|
}"
|
||||||
"SUPER, C, exec, ${withTerm { progname = "cava"; }}"
|
"SUPER, C, exec, ${withTerm { progname = "${config.programs.cava.package}/bin/cava"; }}"
|
||||||
|
|
||||||
# Misc useful binds
|
# Misc useful binds
|
||||||
",Print,exec,${pkgs.grim}/bin/grim -g \"$(${pkgs.slurp}/bin/slurp)\" - | ${pkgs.swappy}/bin/swappy -f -"
|
",Print,exec,${pkgs.grim}/bin/grim -g \"$(${pkgs.slurp}/bin/slurp)\" - | ${pkgs.swappy}/bin/swappy -f -"
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
{ config, ... }:
|
|
||||||
{
|
|
||||||
programs.cava = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
color = with config.lib.stylix.colors.withHashtag; {
|
|
||||||
gradient = 1;
|
|
||||||
gradient_count = 6;
|
|
||||||
gradient_color_1 = "'${red}'";
|
|
||||||
gradient_color_2 = "'${yellow}'";
|
|
||||||
gradient_color_3 = "'${green}'";
|
|
||||||
gradient_color_4 = "'${cyan}'";
|
|
||||||
gradient_color_5 = "'${blue}'";
|
|
||||||
gradient_color_6 = "'${magenta}'";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -49,6 +49,21 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
cava = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
color = with config.lib.stylix.colors.withHashtag; {
|
||||||
|
gradient = 1;
|
||||||
|
gradient_count = 6;
|
||||||
|
gradient_color_1 = "'${red}'";
|
||||||
|
gradient_color_2 = "'${yellow}'";
|
||||||
|
gradient_color_3 = "'${green}'";
|
||||||
|
gradient_color_4 = "'${cyan}'";
|
||||||
|
gradient_color_5 = "'${blue}'";
|
||||||
|
gradient_color_6 = "'${magenta}'";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
direnv = {
|
direnv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
nix-direnv.enable = true;
|
nix-direnv.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue