feat(yazi): add vlc to video and audio

This commit is contained in:
Sergio Laín 2024-11-10 01:39:54 +01:00
parent c039511532
commit b9e07acbd2
No known key found for this signature in database
GPG key ID: 51BB28D8B42FB438

View file

@ -36,14 +36,19 @@ image = [
{ run = 'krita "$@"', orphan = true, desc = "krita", for = "linux" },
{ run = 'satty --filename "$@"', orphan = true, desc = "satty", for = "linux" },
]
video = [
{ run = 'xdg-open "$@"', orphan = true, desc = "xdg-open", for = "linux" },
{ run = 'mpv "$@"', orphan = true, desc = "mpv", for = "linux" },
{ run = 'vlc "$@"', orphan = true, desc = "vlc", for = "linux" },
]
audio = [
{ run = 'xdg-open "$@"', orphan = true, desc = "xdg-open", for = "linux" },
{ run = 'mpv "$@"', orphan = true, desc = "mpv", for = "linux" },
{ run = 'vlc "$@"', orphan = true, desc = "vlc", for = "linux" },
]
fallback = [
{ run = 'xdg-open "$@"', orphan = true, desc = "xdg-open", for = "linux" },
]