应用程序在菜单中出现,但没有图标且重复

应用程序在菜单中出现,但没有图标且重复

我想我的桌面文件有问题,因为 urxvt (rxvt-unicode)。当我打开 urxvt(从带有收藏夹图标的菜单或“搜索栏”)时,菜单栏中会出现一个新图标,而不是在 rxvt 图标附近添加小红点。其他应用程序不会出现此问题。

在下面的例子中,我点击我的终端图标,它会在栏底部打开一个新图标(带有齿轮)

在此处输入图片描述

如果我将鼠标放在终端图标(顶部)上,则会出现此消息:Rxvt Color Unicode Terminal,当我将其放在底部图标上时,会出现此消息:URxvt

我的配置

cat /usr/share/applications/rxvt-unicode.desktop 
[Desktop Entry]
Version=1.1
Name=Rxvt Color Unicode Terminal
Comment=Terminal emulator
GenericName=Terminal
Exec=urxvt
Icon=/usr/local/share/icons/iterm3.png
Type=Application
Categories=Utility;TerminalEmulator;
StartupNotify=True
Keywords=shell;prompt;command;commandline;cmd;



uname -a
Linux cse-port 5.11.0-22-generic #23-Ubuntu SMP Thu Jun 17 00:34:23 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux

lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 21.04
Release:        21.04
Codename:       hirsute

谢谢

答案1

使用此配置解决问题。我不知道哪个参数很重要。

[Desktop Entry]
X-AppInstall-Package=rxvt-unicode
X-AppInstall-Popcon=71
X-AppInstall-Section=universe

Name=Rxvt Color Unicode Terminal
Comment=Use the command line
TryExec=urxvt
Exec=urxvt
Icon=/usr/local/share/icons/iterm3.png
Type=Application
Categories=Utility;TerminalEmulator;
StartupNotify=true
Keywords=Run;
Actions=New

[Desktop Action New]
Name=New Rxvt Color Unicode Terminal
Exec=urxvt
OnlyShowIn=Unity

X-Ubuntu-Gettext-Domain=app-install-data

相关内容