7

Gnome Shell 有很好的快捷方式,但是,我找不到以编程方式调用它们的方法假设我想使用 GJS 脚本来启动 Google Chrome,将其移动到工作区 1,并将其最大化,然后启动 Emacs,将其移动到工作区 2,并将其最大化。这可以使用 wm.keybindings 来完成:move-to-workspace-1、move-to-workspace-2 和最大化。但是,如何以编程方式调用它们?

我注意到,在 GJS 中,Meta.prefs_get_keybinding_action('move-to-workspace-1')将返回动作 move-to-workspace-1 的名称,但我没有找到任何调用该动作的函数。在https://github.com/GNOME/mutter/blob/master/src/core/keybindings.c中,我找到了一个函数 meta_display_accelerator_activate,但我找不到这个函数的 GJS 绑定。

那么,有没有办法以编程方式调用 gnome shell 快捷方式?

4

1 回答 1

1

移动应用程序的最佳选择是抓取它的Meta.Window对象,该对象是在启动后创建的。

这将通过获取活动工作区、启动应用程序、然后从活动工作区获取应用程序并移动它来完成。

快速实现的示例代码:

const workspace = global.screen.get_active_workspace();
const Gio = imports.gi.Gio;

//CLIname: Name used to open app from a terminal
//wsIndex: Workspace you want it on
function openApp(CLIname, wsIndex) {
    let context = new Gio.AppLaunchContext;
    //use 2 to indicate URI support
    //0 is no flags, 1 for terminal window,
    //No 3, 4 for notification support
    //null because setting a name has no use
    Gio.AppInfo.create_from_commandline(CLIname, null, 2).launch([], context);
    //Unfortunately, there is no way I know to grab a specific window if you don't know the index.
    for(let w of workspace.list_windows()) {
        //check if the window title or window manager class match the CLIname. Haven't found any that don't match either yet.
        if(w.title.toLowerCase().includes(CLIname.toLowerCase() || w.get_wm_class().toLowerCase.includes(CLIname.toLowerCase()) {
            //Found a match? Move it!
            w.change_workspace(global.screen.get_workspace_by_index(wsIndex));
        }
    {
}
/*init(), enable() and disable() aren't relevant here*/

要在最后回答实际问题,可以通过强制 GNOME 屏幕键盘发出这些键,但这需要为您希望执行的每个键绑定匹配正确的键和 I/O 仿真,这可以只要用户想要它,就可以从扩展中更改。

于 2018-07-09T09:22:28.210 回答