web-dev-qa-db-ja.com

現在のターミナルから新しいターミナルウィンドウを開くコマンド

Sudo apt-get install xdotoolを実行してxdotoolをインストールし、xdotool key ctrl+alt+tコマンドを投げて現在のターミナルウィンドウから新しいターミナルウィンドウを開きましたが、機能していませんでした。

現在のgnome-terminalから新しいターミナルウィンドウを開くコマンドは何ですか?

43
Avinash Raj

このコマンドだけでできます:

gnome-terminal

通常、コマンドを端末から開き、を分離する場合(開いたプログラムを閉じることなくプロンプトに戻る)、次のようなものを使用します。

gnome-terminal & disown

ただし、親端末は同じコマンドが使用されていることを検出しているようなので、その必要はなく、gnome-terminalで十分です。これは、Xfceの端末からxfce4-terminal、KDEのkonsoleを実行しているときにも発生するようです(xtermからxtermを実行すると動作しないようです( xterm xtermも参照 )-Gnome/UnityおよびXfceのターミナルからkonsoleを実行するとも機能しますが、gnomeターミナルのXfceのターミナルにはxfce4-terminal & disownが必要です。

詳細については gnome-terminalのマニュアルページ

 gnome-terminal  [-e,  --command=STRING]   [-x, --execute ]  [--window-with-profile=PROFILENAME]  [--tab-with-profile=PRO‐
       FILENAME]    [--window-with-profile-internal-id=PROFILEID]    [--tab-with-profile-internal-id=PROFILEID]    [--role=ROLE]
       [--show-menubar]   [--hide-menubar]   [--geometry=GEOMETRY]   [--disable-factory]  [-t, --title=TITLE]  [--working-direc‐
       tory=DIRNAME]  [--usage]  [-?, --help]
64
Wilf

現在のターミナルから新しいターミナルウィンドウを開くコマンド、

xdotool key ctrl+shift+n

xdotoolをインストールするには、

Sudo apt-get install xdotool
8
Avinash Raj

次のスクリプトは、現在のgnome-terminalウィンドウに新しいタブを開き、オプションでそのタブにタイトルを付けます。これはどのウィンドウからでも機能します。gnome-terminalウィンドウで実行する必要はありません。また、実行中のgnome-terminalがない場合は起動します。唯一の注意点は、新しいタブを開くためのホットキーを変更した場合、代わりにホットキーを使用するためにxdotool key ctrl+T行を変更する必要がある場合があることです。

#!/bin/bash

DELAY=1
# get title we are going to set tab too, default to Terminal
title="Terminal"
if [ $# -eq 1 ]; then
    title="$1"
fi    

# get pid of running terminal server
TPID=$(ps -C gnome-terminal-server -o pid | tail -1 | sed -e's/\s//g')
if [ ${TPID} == "PID" ]; then
    # no terminal process running yet, so just start one
    gnome-terminal -t "$title" --tab
    exit 0
fi

# there is a terminal, get window id of the running terminal server
WID=$(wmctrl -lp | awk -v pid=$TPID '$3==pid{print $1;exit;}')
# get title of currently active tab
TTITLE=`xwininfo -id 0x5000006 | grep xwininfo | awk '{print $5;exit}'`
if [ "$TTITLE" == "\"Terminal\"" ]; then
    # so we don't go into an infinite loop later
    TTITLE="we had a terminal named terminal $$"
fi
# get focus on active terminal tab
xdotool windowfocus $WID
# use keyboard shortcut to open new tab
xdotool key ctrl+T

# see if we have created tab and are in terminal
NTITLE=`xwininfo -id 0x5000006 | grep xwininfo | awk '{print $5;exit}'`
waited=0
while [ "$TTITLE" == "$NTITLE" ]; do
    # sleep for 1 second before we try again
    xdotool sleep 1
    NTITLE=`xwininfo -id 0x5000006 | grep xwininfo | awk '{print $5;exit}'`
    if [ $waited == 0 ]; then
    echo "Waiting "
    waited=1
    fi
    echo -n "."
done    
if [ $waited == 1 ]; then
    echo ""
fi    

# active tab is the new one we created, wait DELAY seconds just to be sure we can type into it to set tab name
xdotool sleep $DELAY
xdotool type --clearmodifiers "termtitle $title"
xdotool key Return
# make tab the active window and raise it to top
wmctrl -i -a $WID
exit 0
0
seth