#!/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