record hide ubuntu desktop icons

Refreshing desktop looks comfortable

Search for Tweak (optimization) in the search bar, and you can see that there are several options in Extensions, where you can set the hidden desktop recycle bin and file management icons.

To hide the top status bar, you need to install the following plugin:

sudo apt-get install gnome-shell-extension-autohidetopbar

How to uninstall, just use remove

sudo apt-get remove gnome-shell-extension-autohidetopbar

After restarting the computer, enter Tweak->Extensions again, there is an additional option of Topbar, open it to complete the setting.


____________

You can also use commands to hide the desktop's recycle bin and file management icons:

gsettings set org.gnome.shell.extensions.desktop-icons show-trash false
gsettings set org.gnome.shell.extensions.desktop-icons show-home false

If you want to open, then set it to true


Other uses of gsettings:

用法:
  gsettings --version
  gsettings [--schemadir 架构目录] 命令 [参数…]

命令:
  help                      显示此信息
  list-schemas              列出安装了的架构
  list-relocatable-schemas  列出可重定位的架构
  list-keys                 列出某个架构中的键
  list-children             列出某个架构的子对象
  list-recursively          递归地列出键和值
  range                     查询某个键的范围
  describe                  查询某个键的描述
  get                       获取某个键值
  set                       设置某个键值
  reset                     重设某个键值
  reset-recursively         重设指定架构中的所有值
  writable                  检查某个键是否可写
  monitor                   监视更改

使用“gsettings help 命令”查看详细的帮助。

Guess you like

Origin blog.csdn.net/sinat_36050376/article/details/120225063