web-dev-qa-db-ja.com

Unityランチャーを1つのワークスペースのみで表示する方法は?

メインワークスペースでのみランチャーをアクティブにしたい。例えば。 (ワークスペースIIで)ランチャーなしでCitrixウィンドウをフルディスプレイモードに維持するのが好きです。

6
Bugger_man

多くのものと同様に、それは私が知る限り存在しません、[〜#〜] but [〜#〜]、それはほとんど創造性と適切なツール。

enter image description here

どうすればできる

14.04(python3を使用)にいると仮定すると、スクリプトを使用してバックグラウンドで実行でき、現在のビューポートを追跡し、現在のビューポートに応じてランチャーを自動非表示または非表示に設定できます。

  • 最初に行う必要があるのは、wmctrlのインストールです。

    Sudo apt-get install wmctrl
    

    すべてのビューポートの合計サイズに関する情報を取得し、現在のセクションに関する情報を読み取ることができるようにするために、wmctrlが必要です。

  • それが完了したら、以下のスクリプトを空のファイルにコピーし、autohide_launcher.py(そのような名前を保持)および実行可能にする(!)として安全にします。

    hide_launcher行で、ランチャーを自動非表示にするビューポートを決定し( "True"に設定)、ビューポートの数に対応する正しい数のエントリを使用します。リストは、ビューポートの行ごとに、左から右に読み取ります。

#!/usr/bin/env python3

import subprocess
import time

# set the hide-launcher values for your viewports; in rows/columns
hide_launcher = (False, True, True, True)

# don't change anything below (or it must be the time.sleep(2) interval)
key = " org.compiz.unityshell:/org/compiz/profiles/unity/plugins/unityshell/ "
pr_get = "gsettings get "; pr_set = "gsettings set "
check = pr_get+key+"launcher-hide-mode"
hide = pr_set+key+"launcher-hide-mode 1"
show = pr_set+key+"launcher-hide-mode 0"

def get_value(command):
    return subprocess.check_output(
        ["/bin/bash", "-c", command]).decode('utf-8').strip()

# get screen resolution
output = get_value("xrandr").split(); idf = output.index("current")
screen_res = (int(output[idf+1]), int(output[idf+3].replace(",", "")))

while True:
    # get total span size all viewports, position data
    wsp_info = get_value("wmctrl -d").strip()
    scr_data = [item.split("x") for item in wsp_info.split(" ") if "x" in item][0]
    # get current position (viewport coordinates)
    VP = eval(wsp_info[wsp_info.find("VP: "):].split(" ")[1])
    # calculated viewports rows / columns
    VP_hor = int(scr_data[0])/int(screen_res[0])
    VP_vert = int(scr_data[1])/int(screen_res[1])
    # calculated viewport positions
    range_hor = [i*screen_res[0] for i in range(int(VP_hor))]
    range_vert = [i*screen_res[1] for i in range(int(VP_vert))]
    viewports = [(h, range_vert[i])for i in range(len(range_vert)) for h in range_hor]
    current_viewport = viewports.index(VP); a_hide = get_value(check)
    if (hide_launcher[current_viewport], a_hide == "0") == (True, True):
        subprocess.Popen(["/bin/bash", "-c", hide])
    Elif (hide_launcher[current_viewport], a_hide == "0") == (False, False):
        subprocess.Popen(["/bin/bash", "-c", show])
    else:
        pass
    time.sleep(1)
  • 次のコマンドでスクリプトを開始できます。

    /path/to/autohide_launcher.py
    

ビューポートごとの自動非表示をオン/オフに切り替えます

ただし、次のスクリプトを使用して、スクリプトのオン/オフを切り替える1つのコマンドを使用する方が便利です。

以下のスクリプトを空のファイルにコピーし、start_stop.py1つの同じフォルダーにautohide_launcher.pyスクリプトとして保存します。同様に実行可能にします(!)。コマンドで自動非表示機能を切り替えることができます

/path/to/start_stop.py

開始/停止スクリプト:

#!/usr/bin/env python3

import os
import subprocess

script_dir = os.path.dirname(os.path.abspath(__file__))
cmd = "ps -ef | grep autohide_launcher.py"
run = subprocess.check_output(["/bin/bash", "-c", cmd]).decode("utf-8").split("\n")
match = [line for line in run if script_dir+"/"+"autohide_launcher.py" in line]

if len(match) != 0:
    subprocess.Popen(["kill", match[0].split()[1]])
    subprocess.Popen(["notify-send", "autohide per viewport stopped..."])
else:
    subprocess.Popen(["/bin/bash", "-c", script_dir+"/"+"autohide_launcher.py"])
    subprocess.Popen(["notify-send", "autohide per viewport started..."])

enter image description here

スクリプトを開始または停止する代替方法

スクリプトを便利な方法で切り替えるには、他にもいくつかの方法があります。

スタートアップアプリケーションにスクリプトを追加

バックグラウンドでスクリプトを永続的に実行する場合:

  • スタートアップアプリケーションを開き、[追加]を選択します。
  • コマンドを追加します。

    /path/to/autohide_launcher.py
    
  • お好みに名前を付けてください

スクリプトを切り替えるキーボードショートカットを設定する

  • システム設定を開き、「キーボード」>「ショートカット」>「カスタムショートカット」を選択します。
  • 次のコマンドを使用して、選択した新しいショートカットを作成します。

    /path/to/start_stop.py
    

    これで、キーの組み合わせでビューポートごとの自動非表示を切り替えることができます。


Gist.gisthub に投稿

7
Jacob Vlijm

前書き

UnityランチャーとCompizには、特定のビューポートでのみランチャーを表示する設定はありませんが、hide launcherビューポートの変更をポーリングし、それに応じてその設定を変更する設定。左上のビューポートは座標0,0、したがって、そのビューポート上にあるかどうかをポーリングする必要があります-そうでなければ、ランチャーを設定解除します。

スクリップベローズはまさにそれを行います。

スクリプトを取得する

ソースコードはここから直接コピーするか、次のコマンドを実行してgitリポジトリからダウンロードできます(明らかに端末で):

  1. Sudo apt-get install git
  2. cd /opt ; Sudo git clone https://github.com/SergKolo/sergrep.git
  3. Sudo chmod -R +x sergrep

ファイルの名前はtoggle_unity_launcher.sh

スクリプトの仕組み

スクリプトは、オプションなしで(ランチャーを左上のビューポートにのみ表示するために)または-xおよび-yのように特定のビューポートを設定するオプション

 toggle_unity_launcher.sh -x 1366 -y 0

-hフラグは使用状況を出力します。

ログイン時にスクリプトを実行する

スクリプトは、ファイルへのフルパス(-xおよび-yオプション)とスタートアップアプリケーションへの引数

enter image description here

ソースコード

#!/usr/bin/env bash
#
###########################################################
# Author: Serg Kolo , contact: [email protected] 
# Date: April 8th , 2016
# Purpose: Set Unity launcher to show up only on
#          specific viewport. By default - viewport 0,0
# Written for: http://askubuntu.com/q/349247/295286
# Tested on: Ubuntu 14.04 LTS
###########################################################
# Copyright: Serg Kolo , 2016
#    
#     Permission to use, copy, modify, and distribute this software is hereby granted
#     without fee, provided that  the copyright notice above and this permission statement
#     appear in all copies.
#
#     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
#     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
#     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
#     THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
#     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
#     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
#     DEALINGS IN THE SOFTWARE.

ARGV0="$0"
ARGC=$#

print_usage()
{
  cat << EOF

Copyright 2016 Serg Kolo
Usage: toggle_unity_launcher.sh [-x INT -y INT] [-h]

The script toggles Unity Launcher on user-defined viewport
By default - launcher appears only on 0, 0

-x and -y flags serve to set custom viewport 

Use 'xprop -root -notype _NET_DESKTOP_VIEWPORT' to find
the exact coordinates of a viewport you want to set
EOF
}

get_viewport() 
{
    xprop -root -notype _NET_DESKTOP_VIEWPORT | awk -F '=' '{printf "%s",substr($2,2)}'
} 

set_launcher_mode()
{
  dconf write /org/compiz/profiles/unity/plugins/unityshell/launcher-hide-mode $1

}

poll_viewport_change()
{
  while [ "$(get_viewport)" = "$VIEWPORT" ]  
  do
    set_launcher_mode 0
    sleep 0.25
  done
}

parse_args()
{
  local OPTIND opt
  while getopts "x:y:h" opt
  do
   case ${opt} in
      x) XPOS=${OPTARG} 
        ;;
      y) YPOS=${OPTARG}
        ;;
      h) print_usage
         exit 0
        ;;
     \?)
      echo "Invalid option: -$OPTARG" >&2
      exit 1
      ;;
    esac
  done
  shift $((OPTIND-1))
}

main()
{
 local XPOS=0
 local YPOS=0
 parse_args "$@"
 local VIEWPORT=$(printf "%s, %s" "$XPOS" "$YPOS"  )  
 while true
 do
  poll_viewport_change 
  set_launcher_mode 1 # happens only when 
                      # previous function exits
  sleep 0.25
 done
}

main "$@"
4