Thunderbird:指定用于打开文件和参数的处理程序

Thunderbird:指定用于打开文件和参数的处理程序

在 Thunderbird 中,我可以设置用于打开给定扩展名的文件的处理程序。

Preferences
    -> Attachements

我已指定要用于/usr/bin/mpv打开wav文件。我看到我的首选项已保存在我的配置文件目录中handlers.json

"audio/x-wav":{"action":2,"extensions":["wav"],"handlers":[{"name":"mpv","path":"/usr/bin/mpv"}]}},"schemes":{}}

但我还需要指定在打开时使用的命令行参数mpv

Thunderbird 尝试将文件打开为

mpv file.wav

相反,我需要将文件打开为:

mpv --player-operation-mode=pseudo-gui file.wav

我如何告诉 Thunderbird 使用命令行参数?

答案1

Firefox/Thunderbird 无法将参数传递给命令。

创建一个额外的脚本,例如

$ cat mpvp
#! /bin/bash
mpv --player-operation-mode=pseudo-gui "$@"

相关内容