Add explorer.exe backend possibilities

This commit is contained in:
gardouille 2022-03-03 09:28:15 +01:00
parent 487e922905
commit 8f9ea40313
Signed by: gardouille
GPG Key ID: E759BAA22501AF32
1 changed files with 14 additions and 1 deletions

View File

@ -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