我希望能够从 gnome-pie 或类似的东西向终结者添加框架(而不是选项卡)。 “--help”似乎没有什么,但是你们有吗?
答案1
为了模拟任何按键组合,我想到的是使用xdotool
工具。
安装$ sudo apt-get install xdotool
用法:
$ xdotool key [key]+[key]
例如
$ xdotool key ctrl+shift+o # To split horizontal
$ xdotool key ctrl+shift+e # To split vertical
有了这个,您可以更轻松地创建一些别名。
$ alias splith='xdotool key ctrl+shift+o'
$ alias splitv='xdotool key ctrl+shift+e'
试一下。
更新
好的,让我们找到解决方案。
我发现了一个实用程序可以从其他终端执行命令这里。
创建一个文件$ vim ttyecho.c
,复制这段代码
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <string.h>
#include <unistd.h>
void print_help(char *prog_name) {
printf("Usage: %s [-n] DEVNAME COMMAND\n", prog_name);
printf("Usage: '-n' is an optional argument if you want to push a new line at the end of the text\n");
printf("Usage: Will require 'sudo' to run if the executable is not setuid root\n");
exit(1);
}
int main (int argc, char *argv[]) {
char *cmd, *nl = "\n";
int i, fd;
int devno, commandno, newline;
int mem_len;
devno = 1; commandno = 2; newline = 0;
if (argc < 3) {
print_help(argv[0]);
}
if (argc > 3 && argv[1][0] == '-' && argv[1][1] == 'n') {
devno = 2; commandno = 3; newline=1;
} else if (argc > 3 && argv[1][0] == '-' && argv[1][1] != 'n') {
printf("Invalid Option\n");
print_help(argv[0]);
}
fd = open(argv[devno],O_RDWR);
if(fd == -1) {
perror("open DEVICE");
exit(1);
}
mem_len = 0;
for ( i = commandno; i < argc; i++ ) {
mem_len += strlen(argv[i]) + 2;
if ( i > commandno ) {
cmd = (char *)realloc((void *)cmd, mem_len);
} else { //i == commandno
cmd = (char *)malloc(mem_len);
}
strcat(cmd, argv[i]);
strcat(cmd, " ");
}
if (newline == 0)
usleep(225000);
for (i = 0; cmd[i]; i++)
ioctl (fd, TIOCSTI, cmd+i);
if (newline == 1)
ioctl (fd, TIOCSTI, nl);
close(fd);
free((void *)cmd);
exit (0);
}
然后执行make
+文件
$ make ttyecho
$ sudo chown root:root ttyecho
$ sudo cp ttyecho /usr/bin
现在尝试一下,检查终结者终端tty
$ tty
/dev/pts/0
在其他终端执行以下命令
$ ttyecho -n /dev/pts/0 splith
答案2
这是 tachomi 优秀的附录回答;请点赞。
AFAIK 无法使用(例如)外部 DBUS 命令来分割终止符,因此您需要使用其他答案中建议的击键技巧。要向终结者发送击键,您需要首先确保它处于活动状态。执行此操作的一种方法如下。就我而言,我使用 terminator 作为始终打开的“弹出”终端,使用Ctrl+激活Space。我的脚本检查它是否隐藏,然后通过模拟Ctrl+使其显示Space,否则如果它可见,但不在前面,则会激活窗口。
如果您不将其用作弹出终端,那么无论如何这都应该可以工作,并且永远不要执行该条件。
windowlist=$(xprop -root | sed -rn 's/_NET_CLIENT_LIST_STACKING\(WINDOW\): window id # (.*)/\1/p' | tr -d ',')
terminator_visible=false
for i in $windowlist; do
[[ $(xprop -id $i | grep WM_CLASS\(STRING\)) == 'WM_CLASS(STRING) = "terminator", "Terminator"' ]] && terminator_visible=true && term_id=$i
done
if [[ $terminator_visible == false ]]; then # it's hidden
xdotool key --clearmodifiers ctrl+space
elif [[ $(xprop -id $(xdotool getactivewindow) | grep WM_CLASS\(STRING\)) != 'WM_CLASS(STRING) = "terminator", "Terminator"' ]]; then # it's visible, but not active
xdotool windowactivate $term_id 2> /dev/null
fi
运行此脚本来激活窗口后,只需xdotool
按照另一个答案运行命令,即以下之一。我还建议使用--clearmodifiers
(请参阅 参考资料man xdotool
获取更多信息)。
xdotool key --clearmodifiers ctrl+shift+o
xdotool key --clearmodifiers ctrl+shift+e
答案3
这些天你可以使用remotinator hsplit
:https://terminator-gtk3.readthedocs.io/en/latest/advancedusage.html#remotinator
我今天正在寻找这个,只是将其发布在这里,以防其他人(或未来的我)也找到这篇文章。