Skip to content

Latest commit

 

History

History
72 lines (55 loc) · 2.05 KB

README.md

File metadata and controls

72 lines (55 loc) · 2.05 KB

ovos-media-plugin-xdg

plugin for ovos-media

xdg-open opens a file or URL in the user's preferred application.

If a URL is provided the URL will be opened in the user's preferred web browser. If a file is provided the file will be opened in the preferred application for files of that type. xdg-open supports file, ftp, http and https URLs.

xdg-open is for use inside a desktop session only. It is not recommended to use xdg-open as root.

Install

pip install ovos-media-plugin-xdg

Configuration

{
 "media": {

    "preferred_audio_services": ["vlc", "xdg"],
    "preferred_video_services": ["xdg"],
    "preferred_web_services": ["webbrowser", "xdg"],

    // PlaybackType.AUDIO handlers
    "audio_players": {
        // xdg-open to handle uris
        "xdg": {
            // the plugin name
            "module": "ovos-media-audio-plugin-xdg",

            // users may request specific handlers in the utterance
            // using these aliases
            "aliases": ["System", "Desktop", "OS", "XDG Open"],

            // deactivate a plugin by setting to false
            "active": true
        }
    },    
    "video_players": {
        // xdg-open to handle uris
        "xdg": {
            // the plugin name
            "module": "ovos-media-video-plugin-xdg",

            // users may request specific handlers in the utterance
            // using these aliases
            "aliases": ["System", "Desktop", "OS", "XDG Open"],

            // deactivate a plugin by setting to false
            "active": true
        }
    },    
    "web_players": {
        // xdg-open to handle uris
        "xdg": {
            // the plugin name
            "module": "ovos-media-web-plugin-xdg",

            // users may request specific handlers in the utterance
            // using these aliases
            "aliases": ["System", "Desktop", "OS", "XDG Open"],

            // deactivate a plugin by setting to false
            "active": true
        }
    }
}