gnome에서 작업공간 이름 보기

gnome에서 작업공간 이름 보기

작업 공간 2.30.2에 작업 공간이 많이 있습니다. (오래된 것인지는 모르겠습니다. 제공받은 것입니다.) 예전에는 패널에 작업 공간 전환기가 있으면 현재 작업 공간만 표시하고 이름을 표시하면 크기가 자동으로 조정되어 이름을 표시할 수 있을 만큼 커집니다. 만족스럽습니다.

그러나 뭔가 변경되었습니다(centOS 6.3에서 centOS 6.6으로 옮겼지만 그것이 원인인지는 확실하지 않습니다). 이제 작업 공간 전환기의 크기가 조정되지 않고 작업 공간 이름에 비해 너무 작습니다.

스위처를 더 넓게 만드는 방법이 있습니까? 아니면 키를 눌러 현재 작업 공간 이름을 표시하는 방법이 있습니까?

답변1

다음 명령은작업공간 이름:-

gsettings get org.gnome.desktop.wm.preferences workspace-names

당신은 그것을 사용할 수 있습니다 xdotool:-

NAME
       xdotool - command-line X11 automation tool

DESCRIPTION
       xdotool lets you programatically (or manually) simulate keyboard input and mouse activity, move and resize
       windows, etc. It does this using X11's XTEST extension and other Xlib functions.

       There is some support for Extended Window Manager Hints (aka EWMH or NetWM).  See the "EXTENDED WINDOW MANAGER
       HINTS" section for more information.

몇 가지 유용한 명령:-

  • xdotool get_num_desktops: 현재 데스크톱 수를 출력합니다.
  • xdotool get_desktop:산출현재 데스크톱보기에.

따라서 gsettings get org.gnome.desktop.wm.preferences workspace-names다음 출력 ['Name1', 'Name2']과 현재 두 번째 작업 공간에 있는 xdotool get_desktop출력을 고려하세요 .2Name2


또한 wmctrl다음과 같은 내용도 도움이 될 수 있습니다.

NAME
       wmctrl - interact with a EWMH/NetWM compatible X Window Manager.

SYNOPSIS
       wmctrl [ options | actions ]...

DESCRIPTION
       wmctrl  is  a  command  that  can  be  used  to  interact with an X Window manager that is compatible with the
       EWMH/NetWM specification.  wmctrl can query the window manager for information, and it can request  that  cer‐
       tain window management actions be taken.

관련 정보