From 8f9ea403136fba552dc49fb91eeee663131fbae2 Mon Sep 17 00:00:00 2001 From: Gardouille Date: Thu, 3 Mar 2022 09:28:15 +0100 Subject: [PATCH] Add explorer.exe backend possibilities --- explorer.exe | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/explorer.exe b/explorer.exe index a06d6cd..82ae25e 100755 --- a/explorer.exe +++ b/explorer.exe @@ -1,3 +1,16 @@ #! /usr/bin/env sh -command nemo --no-desktop + +# Run nemo if available {{{ +command -v nemo \ + && command nemo --no-desktop \ + && exit 0 +# }}} + +# Run xfe if available {{{ +command -v xfe \ + && command xfe "${PWD:-~}" \ + && exit 0 +# }}} + +exit 1