mpv
This commit is contained in:
parent
640360b3f6
commit
a9cc6ee008
|
@ -1,11 +1,12 @@
|
|||
{
|
||||
imports = [
|
||||
./alacritty
|
||||
./mpv
|
||||
./code
|
||||
./firefox
|
||||
./games
|
||||
./nemo
|
||||
./rofi
|
||||
./firefox
|
||||
./alacritty
|
||||
./misc
|
||||
];
|
||||
}
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
ferdium
|
||||
drawio
|
||||
imv
|
||||
mpv
|
||||
cmus
|
||||
obs-studio
|
||||
gnome-calculator
|
||||
|
|
17
modules/apps/gui/mpv/default.nix
Normal file
17
modules/apps/gui/mpv/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{pkgs,...}: {
|
||||
home-manager.users.joy.programs.mpv = {
|
||||
enable = true;
|
||||
bindings = {
|
||||
x = "add speed 0.1";
|
||||
z = "add speed -0.1";
|
||||
"," = "frame-back-step";
|
||||
"." = "frame-step";
|
||||
space = "set speed 2";
|
||||
DOWN = "add volume -5";
|
||||
UP = "add volume 5";
|
||||
};
|
||||
scripts = with pkgs.mpvScripts; [
|
||||
mpvacious
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue