Gnome-Terminalにコマンド、または新しいタブを開くためのタブ可能なシェルはありますか?


11

キーボードショートカットを探しているのではなく、次のコマンドが必要です。

  • 新しい窓
  • 新しいタブ
  • 現在のタブまたはウィンドウを閉じる
  • シェルウィンドウを最大化する
  • シェルウィンドウを最小化する
  • シェルを別のワークスペースに移動する
  • スイッチタブ

そして基本的にこのようなもの。覚えておいてください。ショートカットではなく、実際のコマンドが必要です。これは、エイリアス機能を利用できるようにするためです。


1
pythonは大丈夫ですか?
セルギーコロディアズニー

4
「現在のタブを閉じる」-このコマンドは「終了」と呼ばれます:D
egmont

「ショートカットが必要ないため[...]エイリアス機能を利用できます」–これについて詳しく説明してください。よく知られているショートカットの代わりにあなたが望んでいる正確な利点は何ですか?ショートカットの問題または欠落している機能は何ですか?私はあなたが探しているものに対する正しいアプローチだと思います。
エグモント

@egmont私はVim中毒者です。
アキバ

たとえば、Maximizeの場合、すべての状態(ブラウザ、画像エディタ、ワードプロセッサなど)のすべての状態(つまり、その中で行うこと)で動作するウィンドウマネージャホットキーを使用する代わりに、 dは、端末でのみ機能し、他のアプリでは機能せず、内部でコマンドを実行していない場合(もちろん、デフォルトのシェル以外)にのみ機能するコマンドを使用することを好みます。いいえ、申し訳ありませんが、この考えはまだ私にはあまり意味がありません:(
egmont

回答:


14

Gnome-Terminalでは、少なくともrawコマンドではデフォルトでこれを行うことはできません。

ただし、これを実行できるキーボードショートカットを呼び出すスクリプトを作成できます。xdotoolこれに必要なことに注意してください:sudo apt install xdotool

  • 新しいウィンドウが:で新しいターミナルウィンドウを起動してnw
    私達はちょうどでこれを行うことができますgnome-terminal
    に追加.bashrc

    echo "alias nw=gnome-terminal" >> ~/.bashrc
  • 新しいタブ:[ 追加 ]でnt
    これを行うことができます。xdotool getactivewindow $(xdotool key ctrl+shift+t)
    .bashrc

    echo "alias nt='xdotool getactivewindow $(xdotool key ctrl+shift+t)'" >> .bashrc
  • タブを閉じる:現在のタブまたはウィンドウをct
    xdotool再びストライクで閉じます:xdotool getactivewindow $(xdotool key ctrl+shift+w)
    追加.bashrc

    echo "alias ct='xdotool getactivewindow $(xdotool key ctrl+shift+w)'" >> .bashrc
  • ウィンドウの最大化ウィンドウ全体を最大化しmaw
    ますwmctrlここで使用できます:wmctrl -r :ACTIVE: -b toggle,maximized_vert,maximized_horz
    追加.bashrc

    echo "alias maw='wmctrl -r :ACTIVE: -b toggle,maximized_vert,maximized_horz'" >> .bashrc
  • ウィンドウの最小miw
    xdotool:もう一度使用できるように、ウィンドウ全体を最小化します:xdotool windowminimize $(xdotool getactivewindow)
    追加.bashrc

    echo "alias miw='xdotool windowminimize $(xdotool getactivewindow)'" >> .bashrc
  • ワークスペースに移動:ウィンドウを別のワークスペースに移動するには、mtw <id>
    これはシェルスクリプトではほとんど実行できず、私の個人的な経験をはるかに超えています。Sergのスクリプトをこの目的に使用することをお勧めします。これは、現時点では実際に機能しているためです。ああ、Compizの利点。


7

前書き

この回答に示されているスクリプトを使用すると、ユーザーは1つのコマンドとオプションのリストを介してターミナルウィンドウを制御できます。使用は簡単で、キーバインドが似ている端末エミュレータと互換性がありますgnome-terminal。移動オプションは他の端末でも使用できますが、これらの端末ではタブを開くことが保証されていません。

このスクリプトは、タブを開く、ウィンドウを開く、ワークスペースに移動する、ワークスペースを右に移動する、整数で参照される特定のワークスペース、ウィンドウを最小化、最大化、および最大化解除します。スクリプトがカバーしない唯一のことは、単に各シェル/端末エミュレーターがすでにコマンドを持っているため、exitまたはCtrlDショートカット経由でタブ/ウィンドウを閉じることです。

!!! 注:xdotoolワークスペースの切り替えとタブを開く必要があります。経由でインストールしますsudo apt-get install xdotool。追加のパッケージをインストールしない場合は、ワークスペースとタブの切り替えは機能しませんが、他のオプションは機能することに注意してください。

使用法:

へのすべての引数windowctrl.pyはオプションであるため、別々に使用することも、一緒に使用することもできます。-hオプションで示すように。

$ ./windowctrl.py -h                                                                               
usage: windowctrl.py [-h] [-w] [-t] [-m] [-M] [-u] [-v VIEWPORT] [-r] [-d]

Copyright 2016. Sergiy Kolodyazhnyy.

    Window control for terminal emulators. Originally written
    for gnome-terminal under Ubuntu with Unity desktop but can 
    be used with any other terminal emulator that conforms to 
    gnome-terminal keybindings. It can potentially be used for 
    controlling other windows as well via binding this script
    to a keyboard shortcut.

    Note that --viewport and --tab options require xdotool to be
    installed on the system. If you don't have it installed, you 
    can still use the other options. xdotool can be installed via
    sudo apt-get install xdotool.


optional arguments:
  -h, --help            show this help message and exit
  -w, --window          spawns new window
  -t, --tab             spawns new tab
  -m, --minimize        minimizes current window
  -M, --maximize        maximizes window
  -u, --unmaximize      unmaximizes window
  -v VIEWPORT, --viewport VIEWPORT
                        send window to workspace number
  -r, --right           send window to workspace right
  -d, --down            send window to workspace down

スクリプトソースコード:

スクリプトのソースコードは、GitHubとこちらから入手できます。最新の変更はここではなくGitHubに反映される可能性が高いため、そこで最新バージョンを確認することを強くお勧めします。そこにバグレポートも投稿することをお勧めします。

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Program name: windowctrl.py
Author: Sergiy Kolodyazhnyy
Date:  Sept 18, 2016
Written for: http://askubuntu.com/q/826310/295286
Tested on Ubuntu 16.04 LTS
"""
from __future__ import print_function
import gi
gi.require_version('Gdk', '3.0')
from gi.repository import Gio,Gdk
import sys
import dbus
import subprocess
import argparse

def gsettings_get(schema,path,key):
    """Get value of gsettings schema"""
    if path is None:
        gsettings = Gio.Settings.new(schema)
    else:
        gsettings = Gio.Settings.new_with_path(schema,path)
    return gsettings.get_value(key)

def run_cmd(cmdlist):
    """ Reusable function for running shell commands"""
    try:
        stdout = subprocess.check_output(cmdlist)
    except subprocess.CalledProcessError:
        print(">>> subprocess:",cmdlist)
        sys.exit(1)
    else:
        if stdout:
            return stdout

def get_dbus(bus_type,obj,path,interface,method,arg):
    # Reusable function for accessing dbus
    # This basically works the same as 
    # dbus-send or qdbus. Just give it
    # all the info, and it will spit out output
    if bus_type == "session":
        bus = dbus.SessionBus() 
    if bus_type == "system":
        bus = dbus.SystemBus()
    proxy = bus.get_object(obj,path)
    method = proxy.get_dbus_method(method,interface)
    if arg:
        return method(arg)
    else:
        return method() 

def new_window():
    screen = Gdk.Screen.get_default()
    active_xid = int(screen.get_active_window().get_xid())
    app_path = get_dbus( 'session',
                         'org.ayatana.bamf',
                         '/org/ayatana/bamf/matcher',
                         'org.ayatana.bamf.matcher',
                         'ApplicationForXid',
                         active_xid
                         )

    desk_file  = get_dbus('session',
                          'org.ayatana.bamf',
                          str(app_path),
                          'org.ayatana.bamf.application',
                          'DesktopFile',
                          None
                          )

    # Big credit to Six: http://askubuntu.com/a/664272/295286
    Gio.DesktopAppInfo.new_from_filename(desk_file).launch_uris(None)



def enumerate_viewports():
    """ generates enumerated dictionary of viewports and their
        indexes, counting left to right """
    schema="org.compiz.core"
    path="/org/compiz/profiles/unity/plugins/core/"
    keys=['hsize','vsize']
    screen = Gdk.Screen.get_default()
    screen_size=[ screen.get_width(),screen.get_height()]
    grid=[ int(str(gsettings_get(schema,path,key))) for key in keys]
    x_vals=[ screen_size[0]*x for x in range(0,grid[0]) ]
    y_vals=[screen_size[1]*x for x in range(0,grid[1]) ]

    viewports=[(x,y)  for y in y_vals for x in x_vals ]

    return {vp:ix for ix,vp in enumerate(viewports,1)}


def get_current_viewport():
    """returns tuple representing current viewport, 
       in format (width,height)"""
    vp_string = run_cmd(['xprop', '-root', 
                         '-notype', '_NET_DESKTOP_VIEWPORT'])
    vp_list=vp_string.decode().strip().split('=')[1].split(',')
    return tuple( int(i)  for i in vp_list )

def maximize():

    screen = Gdk.Screen.get_default()
    window = screen.get_active_window()
    window.maximize()
    screen.get_active_window()
    window.process_all_updates()

def unmaximize():

    screen = Gdk.Screen.get_default()
    window = screen.get_active_window()
    window.unmaximize()
    screen.get_active_window()
    window.process_all_updates()

def minimize():

    screen = Gdk.Screen.get_default()
    window = screen.get_active_window()
    window.iconify()
    window.process_all_updates()

def window_move(viewport):

    # 1. grab window object
    # 2. jump viewport 0 0 so we can move only
    #    in positive plane
    # 3. move the window.
    # 4. set viewport back to what it was

    # Step 1
    screen = Gdk.Screen.get_default()
    screen_size=[ screen.get_width(),screen.get_height()]
    window = screen.get_active_window()

    viewports = enumerate_viewports()
    current = get_current_viewport()
    current_num = viewports[current]
    destination = [ 
                   key for  key,val in viewports.items() 
                   if val == int(viewport)
                   ][0]
    # Step 2.
    run_cmd([
            'xdotool',
            'set_desktop_viewport',
            '0','0'
            ]) 
    # Step 3.
    window.move(destination[0],destination[1])
    window.process_all_updates()

    run_cmd([
            'xdotool',
            'set_desktop_viewport',
            str(current[0]),
            str(current[1])
            ]) 

def move_right():
    sc = Gdk.Screen.get_default()
    width = sc.get_width()
    win = sc.get_active_window()
    pos = win.get_origin()
    win.move(width,pos.y)
    win.process_all_updates()

def move_down():
    sc = Gdk.Screen.get_default()
    height = sc.get_height()
    win = sc.get_active_window()
    pos = win.get_origin()
    win.move(pos.x,height)
    win.process_all_updates()

def new_tab():
    run_cmd(['xdotool','key','ctrl+shift+t'])

def parse_args():
    """ Parse command line arguments"""

    info="""Copyright 2016. Sergiy Kolodyazhnyy.

    Window control for terminal emulators. Originally written
    for gnome-terminal under Ubuntu with Unity desktop but can 
    be used with any other terminal emulator that conforms to 
    gnome-terminal keybindings. It can potentially be used for 
    controlling other windows as well via binding this script
    to a keyboard shortcut.

    Note that --viewport and --tab options require xdotool to be
    installed on the system. If you don't have it installed, you 
    can still use the other options. xdotool can be installed via
    sudo apt-get install xdotool.
    """
    arg_parser = argparse.ArgumentParser(
                 description=info,
                 formatter_class=argparse.RawTextHelpFormatter)
    arg_parser.add_argument(
                '-w','--window', action='store_true',
                help='spawns new window',
                required=False)
    arg_parser.add_argument(
                '-t','--tab',action='store_true',
                help='spawns new tab',
                required=False)
    arg_parser.add_argument(
                '-m','--minimize',action='store_true',
                help='minimizes current window',
                required=False)
    arg_parser.add_argument(
                '-M','--maximize',action='store_true',
                help='maximizes window',
                required=False)
    arg_parser.add_argument(
                '-u','--unmaximize',action='store_true',
                help='unmaximizes window',
                required=False)
    arg_parser.add_argument(
               '-v','--viewport',action='store',
               type=int, help='send window to workspace number',
               required=False)
    arg_parser.add_argument(
               '-r','--right',action='store_true',
               help='send window to workspace right',
               required=False)
    arg_parser.add_argument(
               '-d','--down',action='store_true',
               help='send window to workspace down',
               required=False)
    return arg_parser.parse_args()

def main():

    args = parse_args()

    if args.window:
       new_window()
    if args.tab:
       new_tab()
    if args.down:
       move_down()
    if args.right:
       move_right()       
    if args.viewport:
       window_move(args.viewport)
    if args.minimize:
       minimize()
    if args.maximize:
       maximize()
    if args.unmaximize:
       unmaximize()

if __name__ == '__main__':
    main()

サイドノート

  • 「Gnome-Terminalにコマンドがありますか、または新しいタブを開くためのタブ付きシェルがありますか?」Gnome端末のマニュアルには、このようなオプションはリストされていません。シェルはコマンドラインユーティリティです。タブはGUIアプリケーションの機能です。以下のようなターミナルマルチプレクサがあるscreentmuxの並べ替えの近くに「tabbableシェル」になるが、これはあなたが求める行動のと同じタイプではありません「タブ」または分割ウィンドウを持つことができます。基本的に、あなたの質問に対する答えは「いいえ」です。常に選択肢があり、私の答えはそのうちの1つを提供します。X11 GUIウィンドウ-その性質に応じてターミナルウィンドウを扱います。

  • この回答はエイリアスとどのように関連していますか?まず、特に複数のコマンドからの複数の出力を引用して解析する場合、エイリアスは少し厄介になる可能性があります。このスクリプトは、ウィンドウ上で個別のタスクを実行するためのフラグ/スイッチを備えた1つの集中コマンドを提供します。また、エイリアスがより簡単になります。できますalias nw='windowctrl.py --window'。ずっと短く、ずっときれい。


ターミナルの分割に満足しています
アキバ

1
@Akivaターミナルの分割に関連する質問をリンクしてほしいですか?ちなみにこのスクリプトを試しましたか?どう思いますか ?
セルギーコロディアズニー

上記の答えは私にトラブルを与えているので、私はあなたのスクリプトを試します。ただし、主にxdotoolに問題があるため、それほど幸運ではないかもしれません。
アキバ

@Akivaとは何の問題xdotoolですか?たぶん私はそれを修正できましたか?
セルギーKolodyazhnyy

私はそれについてあなたに戻らなければならないでしょう。カスタムキーボードレイアウト、または16.10を使用しているという事実、またはguakeを使用しているという事実に関係している可能性があります。
アキバ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.