mpv
This commit is contained in:
parent
640360b3f6
commit
a9cc6ee008
|
@ -1,11 +1,12 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./alacritty
|
./mpv
|
||||||
./code
|
./code
|
||||||
./firefox
|
|
||||||
./games
|
./games
|
||||||
./nemo
|
./nemo
|
||||||
./rofi
|
./rofi
|
||||||
|
./firefox
|
||||||
|
./alacritty
|
||||||
./misc
|
./misc
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
ferdium
|
ferdium
|
||||||
drawio
|
drawio
|
||||||
imv
|
imv
|
||||||
mpv
|
|
||||||
cmus
|
cmus
|
||||||
obs-studio
|
obs-studio
|
||||||
gnome-calculator
|
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