feat(mpv): add misc scripts

This commit is contained in:
matt1432 2023-12-16 21:51:43 -05:00
commit 4f349dae0f
5 changed files with 63 additions and 0 deletions
home/mpv/scripts

View file

@ -0,0 +1,16 @@
{
fetchFromGitHub,
buildLua,
}:
buildLua rec {
pname = "undo-redo";
version = "unstable";
src = fetchFromGitHub {
owner = "Eisa01";
repo = "mpv-scripts";
rev = "48d68283cea47ff8e904decc9003b3abc3e2123e";
hash = "sha256-95CAKjBRELX2f7oWSHFWJnI0mikAoxhfUphe9k51Qf4=";
};
scriptPath = "${src}/scripts/UndoRedo.lua";
}