add support for imv when named imv in nuke

This commit is contained in:
Anomalocaridid 2022-01-08 16:21:49 -05:00
parent 2eadf35fa0
commit efa960d022
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