I have an issue with Ubuntu 21.04. After upgrading I noticed all my files in the desktop went to a folder named Desktop in Documents. How can I transfer them back to the desktop screen? When I select Move to or Copy I can't make them go in the desktop. It's like the Desktop is restricted to not be able to add files too.
Asked
Active
Viewed 786 times
1 Answers
2
You will want to install gnome-tweak-tool
and then enable the "Desktop icons ng" extension. Here's how you can do this:
- Open Terminal (if it's not already open)
- Update
apt
:sudo apt update
- Install Gnome Tweaks:
sudo apt install gnome-tweak-tool
- Open Gnome Tweaks:
- In the "Extensions" tab, ensure the top toggle is enabled as well as "Desktop icons ng":
- Copy/Paste/Move files to the desktop to your heart's content
Note: One issue that I see with this extension is that you cannot delete files from the desktop with Shift+Delete. Instead you will need to right-click, then choose "Move to trash"

matigo
- 22,138
- 7
- 45
- 75
sudo apt install gnome-shell-extension-prefs
: more reliable for system extensions, and moreover, the management of gnome shell extensions will be removed from Tweaks anyway. – vanadium Apr 25 '21 at 18:50Tweaks
was installed from the USC, is it still preferable to installgnome-shell=extension-prefs
? – graham Apr 26 '21 at 17:01