显示 GNOME 3 的桌面按钮

显示 GNOME 3 的桌面按钮

https://www.gnome.org/wp-content/uploads/2010/09/activities-overview-940x529.png

在 GNOME 3、RHEL 7 上,如何创建一个可以使用鼠标轻松触及的按钮(如果打开任何内容,只需单击 1 次),即可将所有打开的窗口带到任务栏?就像 GNOME 2 或 Windows 中的“显示桌面”图标。

答案1

您可以创建一个应用程序启动器,其内容如下:

[Desktop Entry]
Type=Application
Name=Show-Desktop
Exec=wmctrl -k on

然后将其命名为“保存”show-desktop.desktop并授予其执行权限(chmod +x)。

现在,您可以将其添加到面板或任务栏,然后单击它即可按预期显示桌面。

笔记:它需要wmctrl安装在您的系统上。

NAME
       wmctrl - interact with a EWMH/NetWM compatible X Window Manager.

-k  ( on  |  off  )
              Turn on or off the window manager's "show the desktop" mode (if the window manager implements this fea‐
              ture).

相关内容