web-dev-qa-db-ja.com

Unityでウィンドウをボックスに最小化できますか?

Irixの4Dwmでは、ウィンドウをボックスに最小化する機能がありました(最近のウィンドウマネージャーが使用するタスクバーとは異なります)。これは古いHPUXでも見ました。

リンクされた画像の「コンソール」正方形を参照してください。

enter image description here

プラグインを使用するか、Unity以外のウィンドウマネージャーを使用してUbuntuで実行することは可能ですか?

17
Artium

驚いたことに、デスクトップに他のものがあまり多くない限り、非常にうまく機能します。

私はしばらくそれを使って作業しましたが、奇妙に思えますが、奇妙なことに、頻繁にワークスペースを切り替えるのに十分な Nice の代替品です。そのシンプルさのためにリフレッシュ。

実際には

解決策は、実際にあなたが説明するものとほぼ同じです。

  • キーの組み合わせを押すと、デスクトップ上のウィンドウがウィンドウから「ボックス化」されます。

    enter image description here

    アプリケーションの外観を持つアイコンに:

    enter image description here

  • アイコンをダブルクリックすると、ウィンドウが再表示され、アイコンが消えます。

使い方

短い話(説明):

  • ショートカットキーを押すと、スクリプトは引数boxで呼び出されます。

    windowbox box
    
  • スクリプトは次のとおりです。

    • 最前面のウィンドウのウィンドウIDを読み取ります
    • 「通常の」ウィンドウかどうかを確認します(たとえば、デスクトップのマッピングを解除したくないでしょう)
    • ウィンドウを所有しているアプリケーションのプロセス名を検索します。
    • .desktop内の対応するアプリケーションの/usr/share/applicationsファイルで対応するアイコンを検索します
    • 一意の名前を持つ.desktopファイルを作成し、Exec=行を使用して、スクリプトをダブルクリックしたときに引数showで呼び出します:

      windowbox show
      

.desktopファイルは、ウィンドウID、.desktopファイルの(ファイル)名など、いくつかの追加引数引数を追加します。

その後:

  • .desktopファイルは実行可能になり、ダブルクリック可能なオブジェクトになります。

  • .desktopファイルをダブルクリックすると、ウィンドウが(再)マッピングされ、.desktopファイルがデスクトップから削除されます。

設定方法

  1. 事実上いつものように、ウィンドウで遊んでみたいとき、スクリプトにはwmctrlxdotoolの両方が必要です。

    Sudo apt-get install xdotool wmctrl
    
  2. ディレクトリ~/binを作成します(~はホームディレクトリを表します)
  3. 以下のスクリプトを空のファイルにコピーし、~/binwindowbox(拡張子なし)として保存します。

    #!/usr/bin/env python3
    import subprocess
    import sys
    import os
    
    # --- On Unity, there is a (y-wise) deviation in window placement
    # set to zero for other window managers
    deviation = 28
    # ---
    
    args = sys.argv[1:]
    
    get = lambda cmd: subprocess.check_output(cmd).decode("utf-8").strip()
    
    def find_dtop():
        # get the localized path to the Desktop folder
        home = os.environ["HOME"]
        dr_file = home+"/.config/user-dirs.dirs"
        return [home+"/"+ l.split("/")[-1].strip() \
                for l in open(dr_file).readlines() \
                if l.startswith("XDG_DESKTOP_DIR=")][0].replace('"', "")
    
    def check_windowtype(w_id):
        # check the type of window; only unmap "NORMAL" windows
        return "_NET_WM_WINDOW_TYPE_NORMAL" in get(["xprop", "-id", w_id])
    
    def get_process(w_id):
        # get the name of the process, owning the window and window x/y position
        w_list = get(["wmctrl", "-lpG"]).splitlines()
        pid = [l for l in w_list if w_id in l][0].split()
        proc = get(["ps", "-p", pid[2], "-o", "comm="])
        xy = (" ").join(pid[3:5])
        return (proc, xy)
    
    def read_f(f, string, proc):
        # search for a possible match in a targeted .desktop file
        try:
            with open(f) as read:
                for l in read:
                    if all([l.startswith(string), proc in l]):
                        in_f = True
                        break
                    else:
                        in_f = False
        except:
            in_f = False
        return in_f
    
    def get_icon(proc, w_name):
        # search appropriate icon in /usr/share/applications
        exceptions = [item for item in [
            ["soffice", "libreoffice-main"],
            ["gnome-terminal", "utilities-terminal"],
            ["nautilus", "folder"],
            ] if item[0] in proc]
        if exceptions:
            if exceptions == [["soffice", "libreoffice-main"]]:
                loffice = [
                    ["Calc", "libreoffice-calc"],
                    ["Writer", "libreoffice-writer"],
                    ["Base", "libreoffice-base"],
                    ["Draw", "libreoffice-draw"],
                    ["Impress", "libreoffice-impress"],
                    ]
                match = [m[1] for m in loffice if m[0] in w_name]
                if match:
                    return match[0]
                else:
                    return exceptions[0][1]
            else:      
                return exceptions[0][1]
        else:
            default = "/usr/share/applications"
            dtfiles = [default+"/"+f for f in os.listdir(default)]
            for f in dtfiles:
                if read_f(f, "Exec=", proc) == True:   
                    for l in open(f).readlines():
                        if l.startswith("Icon="):
                            icon = l.replace("Icon=", "").strip()
                            print(f)
                            break
                    break
            return icon
    
    def create_name():
        # create unique (file-) name for boxed window
        n = 1
        while True:
            name = dtop+"/"+"boxed_"+str(n)+".desktop"
            if os.path.exists(name):
                n += 1
            else:
                break
        return name
    
    def convert_wid(w_id):
        # convert window- id, xdotool format, into wmctrl format
        w_id = hex(int(w_id))
        return w_id[:2]+(10-len(w_id))*"0"+w_id[2:]
    
    def create_icon(w_id, w_name, icon, pos):
        # create the launcher, representing the boxed window
        boxedwindow = create_name()
        f_content =[
                "[Desktop Entry]",
                "Name=[WINDOW] "+w_name,
                "Exec=windowbox show "+w_id+" '"+boxedwindow+"' "+pos,
                "Icon="+icon,
                "Type=Application",
                ]
        if icon == "generic":
            f_content.pop(3)
        with open(boxedwindow, "wt") as boxed:
            for l in f_content:
                boxed.write(l+"\n")
        command = "chmod +x "+"'"+boxedwindow+"'"
        subprocess.call(["/bin/bash", "-c", command])
    
    if args[0] == "box":
        dtop = find_dtop()
        w_id = convert_wid(get(["xdotool", "getactivewindow"]))
        w_name = get(["xdotool", "getwindowname", w_id])
        if check_windowtype(w_id) == True:
            procdata = get_process(w_id)
            procname = procdata[0]
            icon = get_icon(procname, w_name); icon = icon if icon != None else "generic"
            create_icon(w_id, w_name, icon, procdata[1])
            subprocess.call(["xdotool", "windowunmap", w_id])
    
    Elif args[0] == "show":
        w_id = args[1]
        subprocess.call(["xdotool", "windowmap", w_id])    
        subprocess.call(["xdotool", "windowmove", "--sync", w_id, args[3], str(int(args[4])-deviation)])
        os.remove(args[2])
    
  4. スクリプトを実行可能にします

  5. $PATHに新しく作成されたディレクトリを「ポップアップ」するには、ログアウト/ログインするか、source ~/.profileを実行します(ターミナルウィンドウから)
  6. 次のコマンドにより、ターミナルウィンドウからスクリプトをテスト実行します。

    windowbox box
    

    ウィンドウが消え、「ボックス化された」ウィンドウがデスクトップに表示されます。

  7. すべてが正常に機能する場合は、次のコマンドをショートカットキーに追加します。画面の右上にある歯車アイコンを選択します。

    Gear icon

  8. に行く System Settings → Keyboard → Shortcuts → Custom Shortcuts。クリック + コマンドを追加します:

    windowbox box
    

それはそれを行う必要があります。

重要な注意点

スクリプトはxdotoolwindowunmapを使用して、ウィンドウを非表示にします。デスクトップに作成された「ボックス」(アイコン)は、非表示ウィンドウへの唯一の「ゲート」です。つまり、デスクトップファイルを手動で削除しないでください。そうすると、ウィンドウは永久に失われます。

仕事[編集20-12: done ]

スクリプトはまだいくつかの改良を使用できます。

  • ウィンドウジオメトリは、定義により復元されません。非常にうまく修正できますが、最初の結果を表示すると思いました。
  • ほとんどの場合、ボックス化されたウィンドウには正しいアイコンがあります。ただし、関数get_process(w_id)にはいくつかの改善点があります。プロセスが/usr/share/applicationsのコマンドとして見つからない場合、ファイルには一般的なアイコンがあります。

枠付きウィンドウのアイコンを他のアイコンとは異なるサイズにする

スクリプトは作成された.desktopファイルに名前を付けます always boxed_1.desktopboxed_2.desktopなど、作成時の「使用可能な」名前に応じて(ファイル名、表示名ではありません)。

(一般的に)ファイルのサイズを変更するには、右クリック>アイコンサイズを選択します。良いニュースは、ファイルを削除して再作成すると、サイズが記憶されることです。再起動後にファイルを再度作成しても。つまり、ボックス化されたウィンドウのサイズを ever (たとえば)1〜5に変更すると、 always は同じサイズになります(スクリプト)もう一度作成してください!

enter image description here

18
Jacob Vlijm

これを実現するには、fvwmを使用できます。

  1. Fvwmをインストールします。

    Sudo apt-get update
    Sudo apt-get install fvwm
    
  2. アイコン化機能を使用するそれらを見つけてください-ここにいくつかあります: http://www.jmcunx.com/fvwm_theme.html 表示されるスクリーンショットのように見えます.

  3. テーマのテキストをコピーし、~/.fvwm/(最初に隠しファイルを表示)に移動して、ファイル.fvwm2rcを作成します

  4. そのファイルをテキストエディター(geditなど)で開き、テーマテキストを貼り付けます。

  5. コンピューターを再起動し、fvwmを選択してログインします。

enter image description here

7
Mateo