This repository has been archived on 2024-05-02. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager-flake/modules/mpd/ncmpcpp.nix

23 lines
414 B
Nix

{lib,config,...}: lib.mkIf config.programs.ncmpcpp.enable {
programs.ncmpcpp = {
bindings = [
{
key = "j";
command = "scroll_down";
}
{
key = "k";
command = "scroll_up";
}
{
key = "J";
command = ["select_item" "scroll_down"];
}
{
key = "K";
command = ["select_item" "scroll_up"];
}
];
};
}