

# Add a document about

# Supported shortcuts:
# - f5 ( default )
# - fn + f5
# - command - shift - space


___x_cmd_mac_siri(){
    local content="$1"

    local x_
    x_="\"$content\""  # TODO: transpose double quote

    local script='
    on run {input, parameters}
        tell application "System Events"
            key code 49 using {fn down, command down}
            delay 0.5
            keystroke '$x_'
            delay 0.2
            delay 1
        end tell
        return input
    end run
    '

    ___x_cmd_cmds osascript -e "$script" ""
}
