From 7b2936fb53be6fa908af2dbc68797767ca7300c3 Mon Sep 17 00:00:00 2001 From: Dolphin Oracle Date: Wed, 25 Dec 2019 19:16:27 -0500 Subject: [PATCH 1/2] add x-gvfs-show mount option to show up in the "DEVICES" and/or mounted file systems area of gui file managers utilizing gvfs --- bin/isomount | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/isomount b/bin/isomount index 5f8534b..64f9a97 100755 --- a/bin/isomount +++ b/bin/isomount @@ -486,7 +486,7 @@ do_iso_mount() { local data=$1 file while read file; do [ -z "$file" ] && continue - any_mount "$ISO_NAME" "$file" -o loop,user,ro,exec -t iso9660 + any_mount "$ISO_NAME" "$file" -o loop,user,ro,exec,x-gvfs-show -t iso9660 done < Date: Wed, 25 Dec 2019 19:21:32 -0500 Subject: [PATCH 2/2] add x-gvfs-show to squashfs options so they show up in DEVICES and/or mounted filesystems area of gui filemanagers utilizing gvfs. --- bin/isomount | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/isomount b/bin/isomount index 64f9a97..ae9b364 100755 --- a/bin/isomount +++ b/bin/isomount @@ -500,7 +500,7 @@ do_sq_mount() { local data=$1 file while read file; do [ -z "$file" ] && continue - any_mount "$SQ_NAME" "$file" -o loop,user,ro,exec -t squashfs + any_mount "$SQ_NAME" "$file" -o loop,user,ro,exec,x-gvfs-show -t squashfs done <