Gnome-Terminator

用外部命令分割終結者?

  • May 17, 2017

我希望能夠從 gnome-pie 或類似的東西向終結器添加框架(而不是標籤)。“–help”似乎沒有任何東西,但是你們呢?

為了模擬任何組合鍵,我想到的是使用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

引用自:https://unix.stackexchange.com/questions/261633