O arquivo que é mostrado em unity-dash não é mais /usr/share/applications/nautilus.desktop
mas /usr/share/applications/org.gnome.Nautilus.desktop
.
Alterar a linha Exec=
no próprio arquivo não tem nenhum efeito.
O problema é uma entrada DBusActivatable=true
que faz o sistema rodar nautilus via dbus. Portanto, a linha Exec=
está sendo ignorada. Talvez seja possível fornecer ao nautilus o diretório desejado através do dbus ( /usr/share/dbus-1/services/org.gnome.Nautilus.service
), mas eu não estou familiarizado com esse sistema em detalhes.
Para mais informações, veja aqui: link
Uma solução simples para mim foi esconder o ícone do lançador gnome / dbus e tornar o antigo visível novamente. Portanto, adicione a entrada NotShowIn=Unity;
a /org.gnome.Nautilus.desktop
e comente em nautilus.desktop
. Lá você pode ajustar a linha Exec=
com o diretório desejado.
(file: org.gnome.Nautilus.desktop)
[Desktop Entry]
NotShowIn=Unity; # <--------------------------- add this line !
Name=files
Comment=Access and organize files
Keywords=folder;manager;explore;disk;filesystem;
Exec=nautilus --new-window %U
Icon=system-file-manager
Terminal=false
Type=Application
DBusActivatable=true
StartupNotify=true
Categories=GNOME;GTK;Utility;Core;FileManager;
MimeType=inode/directory;application/x-gnome-saved-search;
X-GNOME-Bugzilla-Bugzilla=GNOME
X-GNOME-Bugzilla-Product=nautilus
X-GNOME-Bugzilla-Component=general
X-GNOME-Bugzilla-Version=3.14.2
X-GNOME-UsesNotifications=true
Actions=Window;
X-Unity-IconBackgroundColor=#af4853
X-Ubuntu-Gettext-Domain=nautilus
#OnlyShowIn=Unity; # <---------------- comment out this line !
[Desktop Action Window]
Name=Open a New Window
Exec=nautilus --new-window
#OnlyShowIn=Unity; # <---------------- comment out this line !
(file nautilus.desktop)
[Desktop Entry]
#NotShowIn=Unity; # <---------------- comment out this line !
Name=files
Comment=Access and organize files
Keywords=folder;manager;explore;disk;filesystem;
Exec=nautilus --new-window /{DESIRED_DIRECTORY} # <- adjust !
Icon=system-file-manager
Terminal=false
Type=Application
StartupNotify=true
Categories=GNOME;GTK;Utility;Core;FileManager;
X-GNOME-Bugzilla-Bugzilla=GNOME
X-GNOME-Bugzilla-Product=nautilus
X-GNOME-Bugzilla-Component=general
X-GNOME-Bugzilla-Version=3.14.2
X-GNOME-UsesNotifications=true
Actions=Window;
X-Unity-IconBackgroundColor=#af4853
X-Ubuntu-Gettext-Domain=nautilus
[Desktop Action Window]
Name=Open a New Window
Exec=nautilus --new-window