क्या ग्नोम-टर्मिनल, या किसी भी टैब्लेबल शेल में एक नया टैब खोलने के लिए कमांड है?


11

मुझे कीबोर्ड शॉर्टकट की तलाश नहीं है, बल्कि मैं इसके लिए एक कमांड चाहता हूं:

  • नयी खिड़की
  • नया टैब
  • करंट टैब या विंडो बंद करें
  • शेल विंडो को अधिकतम करें
  • शेल विंडो को छोटा करें
  • शेल को एक अलग कार्य-स्थान पर ले जाएं
  • टैब स्विच करें

और मूल रूप से ऐसा कुछ भी। याद है; मुझे शॉर्टकट नहीं चाहिए, बल्कि वास्तविक कमांड चाहिए। इसका कारण मैं उर्फ ​​कार्यक्षमता का उपयोग कर सकता हूं।


1
क्या अजगर आपके साथ ठीक है?
सर्गी कोलोडियाज़नी

4
"क्लोज़ करंट टैब" - इस कमांड को "एग्जिट" कहा जाता है: D
egmont

"मुझे शॉर्टकट नहीं चाहिए [...] इसलिए मैं अन्य कार्यों का उपयोग कर सकता हूं" - क्या आप इस पर विस्तार से बता सकते हैं? जाने-माने शार्टकट के बजाय आप जो सटीक लाभ की उम्मीद कर रहे हैं, वह क्या है? शॉर्टकट में समस्या या लापता कार्यक्षमता क्या है? मुझे लगता है कि आप जो खोज रहे हैं, उसके लिए वे सही दृष्टिकोण हैं।
एग्मोंट

@egmont मैं एक विम एडिक्ट हूं, अगर इससे कोई मतलब है।
अकीवा

तो, मान लीजिए, उदाहरण के लिए, Maximize के लिए, एक विंडो मैनेजर हॉटकी होने के बजाय, जो सभी राज्यों में सभी प्रकार की विंडोज़ (ब्राउज़र, इमेज एडिटर, वर्ड प्रोसेसर आदि) के लिए काम करता है (यानी आप उनके भीतर जो भी कर रहे हैं), आप ' d एक ऐसी कमांड रखना पसंद करते हैं जो केवल टर्मिनल और किसी अन्य ऐप के लिए काम करती हो, और केवल तभी जब वह अंदर कोई कमांड नहीं चला रही हो (डिफ़ॉल्ट शेल के अलावा, निश्चित रूप से)। नहीं, क्षमा करें, यह विचार अभी भी मेरे लिए बहुत ज्यादा मायने नहीं रखता है :(
egmont

जवाबों:


14

आप इसे गनोम-टर्मिनल में डिफ़ॉल्ट रूप से नहीं कर सकते, कम से कम कच्चे आदेशों के साथ।

हालाँकि, आप स्क्रिप्ट लिख सकते हैं जो कीबोर्ड शॉर्टकट कहते हैं जो ऐसा कर सकते हैं। ध्यान दें कि आपको इसके लिए आवश्यक 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>
    यह शेल स्क्रिप्टिंग में बस मुश्किल से संभव होगा , और मेरे व्यक्तिगत अनुभव से परे है। मैं इस उद्देश्य के लिए सर्ग की स्क्रिप्ट का उपयोग करने की सलाह दूंगा, क्योंकि यह वास्तव में अब तक काम करता है। आह, Compiz के लाभ।


7

परिचय

इस उत्तर में प्रस्तुत स्क्रिप्ट उपयोगकर्ता को एक एकल आदेश और विकल्पों की सूची के माध्यम से अपनी टर्मिनल विंडो को नियंत्रित करने की अनुमति देती है। यह किसी भी टर्मिनल एमुलेटर के साथ उपयोग करने और संगत करने के लिए सरल है जिसमें कीबिन्डिंग समान है 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()

साइड नोट्स

  • आपने पूछा "क्या नया टैब खोलने के लिए ग्नोम-टर्मिनल में कमांड है, या कोई टैब्बल शेल है?" सूक्ति टर्मिनल मैनुअल ऐसे विकल्प को सूचीबद्ध नहीं करता है। गोले कमांड-लाइन उपयोगिताओं हैं। टैब GUI अनुप्रयोगों की विशेषता है। ऐसे टर्मिनल मल्टीप्लेक्सर हैं जैसे screenया tmuxजिनमें "टैब" या स्प्लिट विंडो हो सकते हैं, जो "टैब्लेबल शेल" के करीब आते हैं, लेकिन यह उसी प्रकार का व्यवहार नहीं है जो आप पूछते हैं। मूल रूप से, आपके प्रश्न का उत्तर "नहीं" है। हमेशा विकल्प होते हैं, और मेरा उत्तर उनमें से एक प्रदान करता है। यह अपनी प्रकृति के अनुसार टर्मिनल विंडो का इलाज करता है - X11 GUI विंडो।

  • यह उत्तर उपनाम से कैसे संबंधित है? खैर, सबसे पहले सभी उपनाम थोड़ा गड़बड़ हो सकते हैं, खासकर जब यह कई कमांड से कई आउटपुट को उद्धृत और पार्स करने की बात आती है। यह स्क्रिप्ट आपको एक, केंद्रीकृत कमांड देता है, झंडे / स्विच के साथ एक विंडो पर असतत कार्य करने के लिए। यह उपनामों को भी सरल बनाता है। आप कर सकते थे alias nw='windowctrl.py --window'। बहुत छोटा, बहुत ज्यादा भोला।


मैं विभाजित टर्मिनलों के साथ खुश हूँ
अक्वा

1
@ अकिवा क्या आप चाहते हैं कि मैं स्प्लिटिंग टर्मिनल से संबंधित एक प्रश्न को लिंक करूं? क्या आपने इस स्क्रिप्ट की कोशिश की है? तुम क्या सोचते हो ?
सर्गी कोलोडियाज़नी

मैं आपकी स्क्रिप्ट की कोशिश करूंगा, क्योंकि ऊपर दिया गया जवाब मुझे परेशान कर रहा है। हालाँकि, मुख्यतः xdotool के साथ समस्या होने के कारण मेरे पास इतना भाग्य नहीं हो सकता है।
अकीवा सेप

@ अकिवा और क्या समस्या है xdotool? शायद मैं इसे ठीक कर सकता हूं?
सेर्गेई कोलोडियाज़नी

मुझे उस पर वापस जाना होगा। मुझे अपने कस्टम कीबोर्ड लेआउट, या तथ्य यह है कि मैं १६.१० पर हूं, या यह कि मैं इसे देख रहा हूं।
अकीवा
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.