mirror of
https://github.com/archlinux/aur.git
synced 2026-02-07 20:52:55 +01:00
10 lines
227 B
Bash
Executable file
10 lines
227 B
Bash
Executable file
#!/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
|