不久前,我启用了一个扩展程序。意识到我不喜欢它的外观,我试图在网页上卸载它https://extensions.gnome.org/ 但令人惊奇的是,它还是没有消失。
因此我使用了这个命令
sudo rm -r [email protected]/
那时,我以为我已经卸载了扩展程序窗口列表。没有。它仍然在我的屏幕底部:
任何帮助将不胜感激。
Ubuntu 版本 17.04,GNOME shell 版本 3.24.2。该命令用于~/.local/share/gnome-shell/extensions
。
编辑:
/usr/share/gnome-shell/extensions$ locate -r /[email protected]$
/usr/share/gnome-shell/extensions/[email protected]
/usr/share/gnome-shell/extensions$ ls
[email protected] [email protected]
[email protected] screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com
[email protected] [email protected]
[email protected] [email protected]
[email protected] [email protected]
native-window-placement@gnome-shell-extensions.gcampax.github.com
答案1
Ubuntu GNOME 17.04 附带许多“官方的“默认情况下,GNOME 扩展窗口列表就是其中之一。这些扩展不是存储在 中,
~/.local/share/gnome-shell/extensions
而是存储在 中/usr/share/gnome-shell/extensions
。
这是完全不推荐在系统文件夹中运行,rm
因为这可能会破坏 GNOME shell 中的程序,或者在下次软件包升级时重新安装扩展。尝试使用 GNOME Tweak Tool 或从https://extensions.gnome.org/local/然后注销并重新登录。
如果你是绝对积极关于删除扩展,您必须运行rm
命令/usr/share/gnome-shell/extensions
(首先使用检查它是否存在ls
)。
答案2
刚才遇到了类似的问题,原来我登录的是 Gnome 经典版而不是常规 Gnome——这就是为什么即使禁用扩展程序后它也不会消失的原因。
答案3
只需重命名 metadata.json 文件 并重新启动系统,它将被禁用。/usr/share/gnome-shell/extensions/[email protected]$
答案4
扩展名不是存储在 中,
~/.local/share/gnome-shell/extensions
而是存储在 中/usr/share/gnome-shell/extensions
。
以下命令应该可以删除包含扩展名的文件夹并解决问题:
sudo rm -r '/usr/share/gnome-shell/extensions/[email protected]'
在上面的命令中,路径中的最后一项是包含扩展的文件夹的名称。