#!/bin/sh

test "x$DISPLAY" != "x" || DISPLAY=:0

if ! out=`dbus-send --session --print-reply --dest=org.xfce.FileManager /org/xfce/FileManager \
    org.xfce.FileManager.DisplayPreferencesDialog "string:$DISPLAY"`; then
    echo $out
    exit 1
fi
