答案1
作为一种解决方法,您可以使用GNOME shell 扩展称为应用程序概述工具提示。 它
在应用程序概述的应用程序图标上显示工具提示,其中包含完整的应用程序名称和说明。
答案2
您可以安装“Arc Menu”GNOME 扩展并将其用作传统菜单的替代品。
或者,如果您是安装了“counsel”包的 Emacs 用户。您可以使用 counsel-linux-app 命令,最好启用 Emacs 服务,您可以将这样的命令绑定到 Alt-F1:
# try to ultilize Emacs server if it's running for near-instantaneous popup
# otherwise invoke a new Emacs process
emacsclient -nc -e "(counsel-linux-app)" -e "(delete-frame)" || emacs -q --eval "(progn (package-initialize) (counsel-linux-app) (kill-emacs))"