Merge pull request #1288 from Anomalocaridid/fix-nuke-imv

add support for imv when named imv in nuke
This commit is contained in:
Arun 2022-01-09 16:16:37 +05:30 committed by GitHub
commit b8b0bab426
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -318,6 +318,9 @@ handle_multimedia() {
if is_mac; then
nohup open "${FPATH}" >/dev/null 2>&1 &
exit 0
elif type imv >/dev/null 2>&1; then
load_dir imv "${FPATH}" >/dev/null 2>&1 &
exit 0
elif type imvr >/dev/null 2>&1; then
load_dir imvr "${FPATH}" >/dev/null 2>&1 &
exit 0