Gnome Shell有很好的快捷方式,但是,我找不到一种方法来调用它们编程假设我想使用 GJS 脚本启动 Google Chrome,将其移动到工作区 1,并最大化它,然后启动 Emacs,将其移动到工作区 2,并最大化它。这可以使用 wm.keybindings 来完成:移动到工作区-1、移动到工作区-2 和最大化。但是,如何编程地调用它们?
我注意到在 GJS 中,Meta.prefs_get_keybinding_action('move-to-workspace-1')
将返回动作移动到工作区 1 的 guint,但我没有找到任何函数来调用动作。在 https://github.com/GNOME/mutter/blob/master/src/core/keybindings.c 中,我找到了一个meta_display_accelerator_activate函数,但我找不到该函数的 GJS 绑定。
那么,有没有办法以编程方式调用 gnome shell 快捷方式?
方法是获取其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 仿真,这些键绑定可以随时从扩展更改。