Removed yazi packages and added some scripts

This commit is contained in:
2025-09-18 12:14:40 +02:00
parent 4bc39fe87a
commit 068ab247f2
68 changed files with 73 additions and 2646 deletions

View File

@@ -0,0 +1,32 @@
[mgr]
sort_by = "extension"
show_hidden = false
[opener]
imagefeh = [
{ run = 'gtk4-launch fehcustom.desktop "$@"', orphan = true, for = "unix" },
]
play = [
{ run = 'mpv "$@"', orphan = true, for = "unix" },
]
edit = [
{ run = '$EDITOR "$@"', block = true, for = "unix" },
]
open = [
{ run = 'xdg-open "$@"', desc = "Open" },
]
[open]
prepend_rules = [
{ mime = "application/pdf", use = "open" },
{ mime = "application/json", use = "edit" },
{ name = "*.html", use = [ "open" ] },
]
rules = [
{ mime = "image/*", use = "imagefeh" },
{ mime = "text/*", use = "edit" },
{ mime = "video/*", use = "play" },
]
append_rules = [
{ name = "*", use = ["edit", "open", "play"]}
]