Files
Hyprland-gentoo/local-overlay/net-im/tencent-qq/files/xdg-open.sh
T
2024-11-05 10:08:11 -05:00

11 lines
206 B
Bash

#!/bin/bash
URI_TO_OPEN="$1"
if ! [ "${URI_TO_OPEN:0:8}" == "jsbridge" ]; then
if [ "${URI_TO_OPEN:0:4}" == "http" ]; then
/snapd-xdg-open "$URI_TO_OPEN"
else
/flatpak-xdg-open "$URI_TO_OPEN"
fi
fi