21 lines
309 B
Nix
21 lines
309 B
Nix
|
{
|
||
|
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"];
|
||
|
}
|
||
|
];
|
||
|
}
|