update: add local-overlay

This commit is contained in:
wyj
2024-11-05 10:08:11 -05:00
parent 1df22c6512
commit bb1e578721
16 changed files with 568 additions and 0 deletions
@@ -0,0 +1,10 @@
#!/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