10 lines
159 B
Bash
Executable File
10 lines
159 B
Bash
Executable File
#!/bin/bash
|
|
if [[ $1 == --daemon ]]; then
|
|
until pgrep gvfs >/dev/null; do
|
|
sleep 1
|
|
done
|
|
exec /usr/bin/Thunar "$@"
|
|
else
|
|
exec /usr/bin/Thunar "$@"
|
|
fi
|