1

我正在为 gnome-shell 编写扩展。但是在 gnome-shell 3.4 中添加了一个菜单,panel._menus并且在 gnome-shell3.6 中使用 with panel.menuManager。如何添加适用于每个版本的菜单?

4

1 回答 1

1

有几种方法可以做到这一点。

您可以检查是否存在panel._menus并使用它(如果存在),否则使用panel.menuManager

let menuManager = panel._menus || panel.menuManager
// now do everything with menuManager

或者您可以显式检查 gnome-shell 版本:

const ShellVersion = imports.misc.config.PACKAGE_VERSION.split(".").map(
   function (x) { return +x; }) // <-- converts from string to number
// this is now an array, e.g. if I am on gnome-shell 3.6.2 it is [3, 6, 2].

if (ShellVersion[1] === 4) {
    // GNOME 3.4, use panel._menus
} else if (ShellVersion[1] === 6) {
    // GNOME 3.6, use panel.menuManager
}
于 2012-12-11T00:12:00.193 回答