How do I rename Nautilus name in the GNOME Shell launcher in Ubuntu 21.10? I tried to find the desktop file in /usr/share/applications
, but I can't find it anywhere for Nautilus.
Asked
Active
Viewed 533 times
2

Lorenz Keel
- 8,905

Rishon_JR
- 1,013
-
3Does this answer your question? how to rename applications in "show apps", such as "GNU Image Manipulation Program" to "GIMP" 20.04.2? – nobody Mar 04 '22 at 09:47
-
Thank You, But the question is already answered :) – Rishon_JR Mar 04 '22 at 09:50
1 Answers
5
Follow these steps:
Copy the Nautilus .desktop file in your home directory (replace
<username>
with your current username). Using the terminal, run the command:cp /usr/share/applications/org.gnome.Nautilus.desktop /home/<username>/.local/share/applications/
You can edit the file directly in
/usr/share/applications
using root privileges, but it's better if you copy the .desktop file in your home: the copied file will have "priority" over the one in/usr/share/applications
and will not be overwritten during Nautilus updates.Then open the file
/home/<username>/.local/share/applications/org.gnome.Nautilus.desktop
end edit theName
field.If you are in a Xorg session, press Alt+F2, write
r
in the box and press Enter. If your session is Wayland, logout and login (or, if you don't care, reboot).
Lorenz Keel
- 8,905
-
1
-
1
-
-
Do i get informed or prompted during an
apt-get upgrade
if the originalorg.gnome.Nautilus.desktop
has changed? e.g. when the upgradedName
property matches my local config, the local config is still valid but redundant... – goulashsoup Jun 28 '22 at 06:39 -
No, unfortunately you need to check it manually. You can write a script that check it for you, but it's overkill. – Lorenz Keel Jun 29 '22 at 09:49
-