Add keybindings for controlling volume

Add keybindings for increasing and decreasing volume in mpv.
This commit is contained in:
Oliver Davies 2024-05-31 19:46:47 +01:00
parent a29372ef99
commit a3bcd63b3d

View file

@ -1,5 +1,11 @@
{
programs.mpv = {
enable = true;
# https://github.com/mpv-player/mpv/blob/master/etc/input.conf
bindings = {
"DOWN" = "add volume -5";
"UP" = "add volume 5";
};
};
}