From 217376239777563acea66ccb7e9fc0f1b6e32fd2 Mon Sep 17 00:00:00 2001 From: Nulo Date: Wed, 9 Feb 2022 19:57:08 -0300 Subject: [PATCH] buscar-archivo: Usar handlr en vez de xdg-open --- .local/bin/buscar-archivos | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.local/bin/buscar-archivos b/.local/bin/buscar-archivos index 07ca647..f4b7ee3 100755 --- a/.local/bin/buscar-archivos +++ b/.local/bin/buscar-archivos @@ -14,15 +14,5 @@ file="$(cat $out)" rm "$out" if test -e "$file"; then - if test -d "$file"; then - exec thunar "$file" - else - exec xdg-open "$file" - fi + exec handlr open "$file" fi - -# if test -d "$file"; then -# xdg-open "$file" -# else -# xdg-open "$(dirname "$file")" -# fi