9d1859928f
Using an alias does not work well when calling it from the WM's launcher.
11 lines
157 B
Bash
Executable file
11 lines
157 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
for name in 'pcmanfm' 'thunar'; do
|
|
if hash "$name" 2>/dev/null; then
|
|
"$name"
|
|
break
|
|
fi
|
|
done
|