在 Kubuntu 18.04 中,我有很多从未使用过且不关心的应用程序。我不仅可以删除 Kmail 和 Kontact,还可以删除 Contact Print Theme Editor、Contact Print Editor,甚至 Kmail Header Theme Editor,我无法使用 Synaptic 找到它们,甚至无法使用 Discover 找到它们。
它们在系统活动列表中显示为contactprintthemeeditor
、contactprinteditor
和headerthemeeditor
,但无法使用 apt 删除这些名称。
它们是更大包裹的一部分吗?
如何删除它们?它们出现在我的搜索/启动器中,我发现这很令人困惑,因为我从来不用它们。
答案1
contactprintthemeeditor
与、contactthemeeditor
(不是contactprinteditor
我的系统上没有的) 和对应的 .desktop 文件headerthemeeditor
是:
- /usr/share/applications/org.kde.contactprintthemeeditor.desktop
- /usr/share/applications/org.kde.contactthemeeditor.desktop
- /usr/share/applications/org.kde.headerthemeeditor.desktop
将这些 .desktop 文件复制到~/.local/share/applications
并编辑它们以添加包含 的行NoDisplay=true
。这将阻止这些项目出现在您的菜单中。同样的方法也可用于隐藏您不想看到的其他内容。
修改版本~/.local/share/applications
将确保您所做的更改在软件更新后仍然有效。
至于这些物品的来源,
locate contactprintthemeeditor contactthemeeditor headerthemeeditor | grep -E "\/usr\/bin"
给我
/usr/bin/contactprintthemeeditor
/usr/bin/contactthemeeditor
/usr/bin/headerthemeeditor
dpkg -S
对他们每个人来说,跑步都会
$ dpkg -S /usr/bin/contactprintthemeeditor
kdepim-themeeditors: /usr/bin/contactprintthemeeditor
$ dpkg -S /usr/bin/contactthemeeditor
kdepim-themeeditors: /usr/bin/contactthemeeditor
$ dpkg -S /usr/bin/headerthemeeditor
kdepim-themeeditors: /usr/bin/headerthemeeditor
$
您可以获取有关 KDE PIM 的更多信息这里。 从那里:
KDE PIM 是 KDE 的一部分。其目标是提供一套应用程序来管理个人信息。其中包括邮件、日历、联系人等。主要结果是联系我们,我们的个人信息经理。
查看部分输出apt depends kontact
显示与kdepim
和 相关的条目grantlee
(提供主题方面):
$ apt depends kontact
kontact
Depends: kdepim-runtime
Depends: kio
Depends: libc6 (>= 2.14)
Depends: libgcc1 (>= 1:3.0)
Depends: libkf5completion5 (>= 4.97.0)
Depends: libkf5configcore5 (>= 4.98.0)
Depends: libkf5configgui5 (>= 4.97.0)
Depends: libkf5configwidgets5 (>= 5.23.0)
Depends: libkf5coreaddons5 (>= 5.2.0)
Depends: libkf5crash5 (>= 5.15.0)
Depends: libkf5grantleetheme-plugins
Depends: libkf5grantleetheme5 (>= 16.08.0)
Depends: libkf5i18n5 (>= 4.97.0)
Depends: libkf5iconthemes5 (>= 4.96.0)
Depends: libkf5kcmutils5 (>= 5.0.0)
Depends: libkf5kdepimdbusinterfaces5 (>= 4:15.12)
Depends: libkf5kiowidgets5 (>= 4.96.0)
Depends: libkf5kontactinterface5 (>= 15.08.0)
Depends: libkf5libkdepim-plugins
Depends: libkf5libkdepim5abi2 (>= 4:17.
.
.
.
因此,清除系统中的所有内容很可能kontact
会直接清除您提到的各种物品,并且肯定会清理您的菜单!
如果没有,请尝试:
sudo apt remove kdepim-themeeditors
顺便说一下,此时,KDE Neon 的清单 没有包括kontact
。