This file located in /usr/local/bin
seems to prevent thunar from working properly on sparc64, when xfce is
running under a user.  When xfce is running under a root account, there is
no problem.  On amd64, there is no issue period.
On my sparc box, I removed this file, and now thunar works properly.  Why
does this file not work properly on a sparc box?
#!/bin/sh
#
# vi:set et ai sw=2 sts=2 ts=2: */

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

output=`dbus-send --session --print-reply --dest=org.xfce.FileManager \
  /org/xfce/FileManager org.xfce.FileManager.DisplayPreferencesDialog \
  "string:$DISPLAY" "string:$DESKTOP_STARTUP_ID"`

if ! [ $? -eq 0 ]; then
  echo $output
  exit 1
fi

Reply via email to