当 Unity 桌面环境还在 Ubuntu 中流行时,我就是一名 Unity 用户。我喜欢这个功能:当我单独按下 alt 键时,我可以获得一个用于在应用程序菜单栏中搜索的搜索栏。此功能称为 HUD(抬头显示)。我在 KDE 安装下使用全局菜单小部件,我想知道是否有办法像在 Unity 中一样在菜单内进行搜索。感谢您的帮助。
目前,我唯一的办法就是
sudo apt install unity -y
,但这不是另一种选择。
答案1
您需要启用全局菜单小部件,或者在标题栏中显示应用程序菜单按钮。
- 要安装依赖项,请运行
sudo apt install rofi python3 python3-dbus python3-setproctitle python3-xlib gir1.2-gtk-3.0
sudo apt install appmenu-gtk2-module appmenu-gtk3-module
- 下载源代码:
git clone https://github.com/Zren/plasma-hud
cd plasma-hud
- 使用以下命令安装文件
sudo mkdir -p /usr/lib/plasma-hud
sudo cp usr/lib/plasma-hud/plasma-hud /usr/lib/plasma-hud/
sudo mkdir -p /etc/xdg/autostart
sudo cp etc/xdg/autostart/plasma-hud.desktop /etc/xdg/autostart/
注销并登录。
逐个运行以下两个命令,将
Alt
按键绑定到HUD。
kwriteconfig5 --file ~/.config/kwinrc --group ModifierOnlyShortcuts --key Alt "com.github.zren.PlasmaHUD,/PlasmaHUD,com.github.zren.PlasmaHUD,toggleHUD"
qdbus org.kde.KWin /KWin reconfigure
这个答案是基于这项目。