From 3acdab8f7e9bdcc2a3c8b47210fcfecc99ad8eba Mon Sep 17 00:00:00 2001 From: Dani Mateo Date: Fri, 17 Jul 2020 23:58:33 +0300 Subject: [PATCH] fixed bug where it tried to open nautilus, changed to xdg-open --- bin/cadmus | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cadmus b/bin/cadmus index 2e47c7c..5dbdb7f 100755 --- a/bin/cadmus +++ b/bin/cadmus @@ -176,7 +176,7 @@ MountTags () { DIR="$(mktemp -d)" tmsu mount "${DIR}" - nautilus "${DIR}" && exit 0 + xdg-open "${DIR}" && exit 0 }