mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-26 21:30:55 +08:00
89 lines
3.3 KiB
Markdown
89 lines
3.3 KiB
Markdown
[#]: subject: "Remove Home Folder Icon from Ubuntu Desktop"
|
||
[#]: via: "https://itsfoss.com/ubuntu-remove-home-icon/"
|
||
[#]: author: "Abhishek Prakash https://itsfoss.com/author/abhishek/"
|
||
[#]: collector: "lujun9972"
|
||
[#]: translator: "geekpi"
|
||
[#]: reviewer: "wxy"
|
||
[#]: publisher: "wxy"
|
||
[#]: url: "https://linux.cn/article-16151-1.html"
|
||
|
||
简单技巧:从 Ubuntu 桌面上删除主文件夹图标
|
||
======
|
||
|
||
![][0]
|
||
|
||
> 对于不想在桌面上看到主文件夹图标的 Ubuntu 用户,这里有一个简单技巧。
|
||
|
||
Ubuntu 使用定制的 GNOME 版本,由于侧边启动器,它的外观与旧的 Unity 桌面有些相似。
|
||
|
||
普通 GNOME 和 Ubuntu 的 GNOME 之间的另一个区别是桌面上主文件夹和回收站的使用。这些图标就在那里,以便你可以快速访问它们。
|
||
|
||
![Home folder icon on Ubuntu desktop][1]
|
||
|
||
如果你觉得不美观,可以从桌面视图中删除主文件夹。
|
||
|
||
让我分享一下 GUI 和命令行方法。
|
||
|
||
### 在 Ubuntu 中隐藏桌面上的主文件夹图标
|
||
|
||
你只需要这样做:
|
||
|
||
**在 Ubuntu 中按 `Super + D` [键盘快捷键][2]访问桌面**。
|
||
|
||
现在**右键单击桌面上的空白区域**。
|
||
|
||
从右键单击上下文菜单中,**选择<ruby>桌面图标设置<rt>Desktop Icons Settings</rt></ruby>**。
|
||
|
||
![Right click on the desktop and click the Desktop Icons Settings][3]
|
||
|
||
它将在“<ruby>设置<rt>Settings</rt></ruby>”应用中打开 <ruby>Ubuntu 桌面<rt>Ubuntu Desktop</rt></ruby>设置选项。你也可以通过打开“设置”应用并转到侧边栏中的“Ubuntu 桌面”选项来访问它。
|
||
|
||
在这里,你将看到**<ruby>显示个人文件夹<rt>Show Personal folder</rt></ruby>的切换选项**。将其关闭以禁用桌面上的主文件夹图标。
|
||
|
||
![Disable the Show Personal folder button][4]
|
||
|
||
> 💡 想要恢复主文件夹图标吗? 再次切换它。
|
||
|
||
### 使用命令行禁用主文件夹图标
|
||
|
||
是的,你可以从命令行完全禁用主文件夹图标。
|
||
|
||
打开终端并使用以下命令。
|
||
|
||
```
|
||
gsettings set org.gnome.shell.extensions.ding show-home false
|
||
```
|
||
|
||
效果将是立竿见影的。
|
||
|
||
要恢复图标,请使用相同的命令,但使用 `true` 而不是 `false`:
|
||
|
||
```
|
||
gsettings set org.gnome.shell.extensions.ding show-home true
|
||
```
|
||
|
||
看到那有多简单了吗? 也可以采取类似的步骤来删除回收站图标。
|
||
|
||
> **[如何在 Ubuntu 中移走桌面的回收站图标][5]**
|
||
|
||
*(题图:MJ/84c2e427-a8b3-40b7-a753-22f020800242)*
|
||
|
||
--------------------------------------------------------------------------------
|
||
|
||
via: https://itsfoss.com/ubuntu-remove-home-icon/
|
||
|
||
作者:[Abhishek Prakash][a]
|
||
选题:[lujun9972][b]
|
||
译者:[geekpi](https://github.com/geekpi)
|
||
校对:[校对者ID](https://github.com/校对者ID)
|
||
|
||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||
|
||
[a]: https://itsfoss.com/author/abhishek/
|
||
[b]: https://github.com/lujun9972
|
||
[1]: https://itsfoss.com/content/images/2023/08/home-folder-icon-on-ubuntu-desktop.png
|
||
[2]: https://itsfoss.com/ubuntu-shortcuts/
|
||
[3]: https://itsfoss.com/content/images/2023/08/access-ubuntu-desktop-icon-settings.png
|
||
[4]: https://itsfoss.com/content/images/2023/08/disable-home-folder-icon-on-ubuntu-desktop.png
|
||
[5]: https://itsfoss.com/remove-trash-icon-ubuntu-desktop/
|
||
[0]: https://img.linux.net.cn/data/attachment/album/202309/02/153353a01ouhl1a5svhym0.jpg |