如何在 gnome-terminal 中选择默认选项卡焦点?
How to choose a default tab focus in gnome-terminal?
我有一个 bash 脚本,它在一个 window 中打开多个选项卡,我想选择一个选项卡作为默认焦点
例如下面的脚本在一个 window:
上打开 3 个标签
gnome-terminal --tab --geometry="100x20" --title="TAB1" -- bash -ic "command1"
gnome-terminal --tab --geometry="100x20" --title="TAB2" -- bash -ic "command2"
gnome-terminal --tab --geometry="100x20" --title="TAB3" -- bash -ic "command3"
所以,假设我希望 tab2 在 运行 脚本和打开 window 之后成为焦点。有没有办法从脚本中指定它?
我强烈推荐安装 terminator,它是一个可以灵活管理多个 运行 gnome 终端的程序。它允许您选择一个选项卡作为默认焦点,同时仍然在同一视图上查看任何其他数量的终端。它可以通过以下方式安装:
$ sudo apt install terminator
我有一个 bash 脚本,它在一个 window 中打开多个选项卡,我想选择一个选项卡作为默认焦点
例如下面的脚本在一个 window:
上打开 3 个标签gnome-terminal --tab --geometry="100x20" --title="TAB1" -- bash -ic "command1"
gnome-terminal --tab --geometry="100x20" --title="TAB2" -- bash -ic "command2"
gnome-terminal --tab --geometry="100x20" --title="TAB3" -- bash -ic "command3"
所以,假设我希望 tab2 在 运行 脚本和打开 window 之后成为焦点。有没有办法从脚本中指定它?
我强烈推荐安装 terminator,它是一个可以灵活管理多个 运行 gnome 终端的程序。它允许您选择一个选项卡作为默认焦点,同时仍然在同一视图上查看任何其他数量的终端。它可以通过以下方式安装:
$ sudo apt install terminator