mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2024-11-10 07:27:23 +01:00
add query for default browser
This commit is contained in:
parent
dbe9e1a049
commit
e3d11b3e7c
@ -1,13 +1,18 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if [[ $OSTYPE = darwin* ]] ; then
|
if [[ $OSTYPE = darwin* ]] ; then
|
||||||
|
default_browser=$(plutil -convert json ~/Library/Preferences/com.apple.LaunchServices/com.apple.launchservices.secure.plist -r -o - | grep https -b1 | tail -n1 | cut -d'"' -f4)
|
||||||
if [ -d /usr/local/Cellar/ffmprovisr ] ; then
|
if [ -d /usr/local/Cellar/ffmprovisr ] ; then
|
||||||
ffmprovisr_path=$(find /usr/local/Cellar/ffmprovisr -iname 'index.html' | sort -M | tail -n1)
|
ffmprovisr_path=$(find /usr/local/Cellar/ffmprovisr -iname 'index.html' | sort -M | tail -n1)
|
||||||
fi
|
fi
|
||||||
if [ -z "${ffmprovisr_path}" ] ; then
|
if [ -z "${ffmprovisr_path}" ] ; then
|
||||||
ffmprovisr_path='https://amiaopensource.github.io/ffmprovisr/'
|
ffmprovisr_path='https://amiaopensource.github.io/ffmprovisr/'
|
||||||
fi
|
fi
|
||||||
open "${ffmprovisr_path}"
|
if [ -n "${default_browser}" ] ; then
|
||||||
|
open -b "${default_browser}" "${ffmprovisr_path}"
|
||||||
|
else
|
||||||
|
open "${ffmprovisr_path}"
|
||||||
|
fi
|
||||||
elif [[ $OSTYPE = linux-gnu ]] ; then
|
elif [[ $OSTYPE = linux-gnu ]] ; then
|
||||||
if [ -d ~/.linuxbrew/Cellar/ffmprovisr ] ; then
|
if [ -d ~/.linuxbrew/Cellar/ffmprovisr ] ; then
|
||||||
ffmprovisr_path=$(find ~/.linuxbrew/Cellar/ffmprovisr -iname 'index.html' | sort -M | tail -n1)
|
ffmprovisr_path=$(find ~/.linuxbrew/Cellar/ffmprovisr -iname 'index.html' | sort -M | tail -n1)
|
||||||
|
Loading…
Reference in New Issue
Block a user