0

I like Nautilus better than Thunar, so I use Nautilus on Xubuntu, but Thunar is still on the desktop. Can I switch that somehow?

lyra
  • 417
  • 1
  • 5
  • 13

1 Answers1

0

Replace Thunar with Nautilus in Xubuntu session configuration:

sudo nano /etc/xdg/xdg-xubuntu/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml

From:

  <property name="Client3_Command" type="array">
    <value type="string" value="Thunar"/>
    <value type="string" value="--daemon"/>
  </property>

To:

  <property name="Client3_Command" type="array">
    <value type="string" value="nautilus"/>
    <value type="string" value="--no-default-window"/>
  </property>
user.dz
  • 49,176