如何在当前 gnome 终端窗口中打开新选项卡?

如何在当前 gnome 终端窗口中打开新选项卡?

我跑了gnome-terminal --working-directory=$DIR,但它在新窗口中打开,而不是选项卡。

我尝试过的事情:

--tab
-T
--add-tab

使用 zsh 运行 RHEL5

答案1

逐字复制我见过的唯一方法,使用xdotool, xprop, & wmctrl

来源:使用命令行在 gnome-terminal 中打开一个新选项卡
#!/bin/sh

WID=$(xprop -root | grep "_NET_ACTIVE_WINDOW(WINDOW)"| awk '{print $5}')
xdotool windowfocus $WID
xdotool key ctrl+shift+t
wmctrl -i -a $WID

这将自动确定相应的终端并相应地打开选项卡。

答案2

如果您想在现有的 gnome 终端窗口中打开一个新选项卡,请尝试 ctrl-shift-t

相关内容