summarylogtreecommitdiffstats
path: root/xdg-open.sh
blob: e9a9a6231fe0eb48d8e1c4d4dbc311c7356caeaa (plain)
1
2
3
4
5
6
#!/bin/bash
URI_TO_OPEN="$1"

if ! [ "${URI_TO_OPEN:0:8}" == "jsbridge" ]; then
    /real-xdg-open "$URI_TO_OPEN"
fi