feat(yazi): added open with options

This commit is contained in:
kenji
2026-03-19 16:30:05 -05:00
parent 7d938288ab
commit ba09321f6b
+20
View File
@@ -92,6 +92,26 @@ in {
tasks = { tasks = {
image_bound = [10000 10000]; image_bound = [10000 10000];
}; };
opener = {
pdf = [
{
run = "zathura \"$@\"";
desc = "Open with Zathura";
}
{
run = "firefox \"$@\"";
desc = "Open with Firefox";
}
];
};
open = {
rules = [
{
mime = "application/pdf";
use = "pdf";
}
];
};
}; };
}; };