내 해상도에 가장 적합한 배경 화면을 찾고 싶습니다. 명령 행에 명령을 작성하여 해결 방법은 무엇입니까?
내 해상도에 가장 적합한 배경 화면을 찾고 싶습니다. 명령 행에 명령을 작성하여 해결 방법은 무엇입니까?
답변:
이 답변 에서 가져온 :
xdpyinfo | grep dimensions
또는 해결책을 얻으려면 :
xdpyinfo | awk '/dimensions/{print $2}'
또는
xdpyinfo | grep -oP 'dimensions:\s+\K\S+'
나는 단지 다음을 사용할 것이다 xrandr
:
$ xrandr
Screen 0: minimum 320 x 200, current 3520 x 1200, maximum 32767 x 32767
LVDS1 connected 1600x900+1920+0 (normal left inverted right x axis y axis) 310mm x 174mm
1600x900 60.0*+
1440x900 59.9
1360x768 59.8 60.0
1152x864 60.0
1024x768 60.0
800x600 60.3 56.2
640x480 59.9
VGA1 disconnected (normal left inverted right x axis y axis)
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 connected primary 1920x1200+0+0 (normal left inverted right x axis y axis) 518mm x 324mm
1920x1200 60.0*+
1920x1080 60.0 50.0 59.9 24.0 24.0
1920x1080i 60.1 50.0 60.0
1600x1200 60.0
1280x1024 75.0 60.0
1152x864 75.0
1280x720 60.0 50.0 59.9
1024x768 75.1 60.0
800x600 75.0 60.3
720x576 50.0
720x480 60.0 59.9
640x480 75.0 60.0 59.9
720x400 70.1
HDMI2 disconnected (normal left inverted right x axis y axis)
HDMI3 disconnected (normal left inverted right x axis y axis)
DP2 disconnected (normal left inverted right x axis y axis)
DP3 disconnected (normal left inverted right x axis y axis)
VIRTUAL1 disconnected (normal left inverted right x axis y axis)
여기에 두 개의 화면이 있으며 해상도는 다음과 같습니다.
기본 모니터의 해상도 만 얻으려면이 파이썬 oneliner를 사용할 수도 있습니다.
$ python3 -c 'from gi.repository import Gdk; screen=Gdk.Screen.get_default(); \
geo = screen.get_monitor_geometry(screen.get_primary_monitor()); \
print(geo.width, "x", geo.height)'
1920 x 1200
확장 데스크탑의 해상도를 얻으려면 (멀티 모니터 설정의 경우) :
$ python3 -c 'from gi.repository import Gdk; screen=Gdk.Screen.get_default(); \
print(screen.get_width(), "x", screen.get_height())'
3520 x 1200
xrandr | grep " connected\|\*"
가치있는 점을 위해 TwinView로 여러 개의 연결된 디스플레이 및 / 또는 오프셋을 사용하면 xdpyinfo는 전체 디스플레이 세트의 해상도를 구성 방식으로 제공합니다. 단일 모니터 또는 디스플레이 포트 중 하나에 연결된 모니터의 해상도가 필요한 경우 xrandr을 사용해야합니다. 그러나 해당 구성에서도 xrandr는 신뢰할 수 없으며 해상도를 표시하지 않을 수 있습니다. 내 X windows 구성 파일에서이 예제 항목을 참조하십시오.
Option "MetaModes" "DP-1: 1440x900 +0+0, DP-3: 1440x900 +1568+0, DP-5: 1440x900 +3136+0"
xrandr 출력은 다음과 같습니다.
DVI-D-0 disconnected primary (normal left inverted right x axis y axis)
HDMI-0 disconnected (normal left inverted right x axis y axis)
DP-0 disconnected (normal left inverted right x axis y axis)
DP-1 connected 1440x900+0+0 (normal left inverted right x axis y axis) 410mm x 256mm
1440x900 59.89*+
1280x1024 60.02
1280x960 60.00
1280x800 59.81
1280x720 60.00
1152x864 75.00
1024x768 70.07 60.00
800x600 75.00 60.32 56.25
640x480 75.00 72.81 59.94
DP-2 disconnected (normal left inverted right x axis y axis)
DP-3 connected (normal left inverted right x axis y axis)
1440x900 59.89 + 74.98
1280x1024 60.02
1280x960 60.00
1280x800 59.81
1280x720 60.00
1152x864 75.00
1024x768 70.07 60.00
800x600 75.00 60.32 56.25
640x480 75.00 72.81 59.94
DP-4 disconnected (normal left inverted right x axis y axis)
DP-5 connected 1440x900+1568+0 (normal left inverted right x axis y axis) 410mm x 256mm
1440x900 59.89*+
1280x1024 60.02
1280x960 60.00
1280x800 59.81
1280x720 60.00
1152x864 75.00
1024x768 70.07 60.00
800x600 75.00 60.32 56.25
640x480 75.00 72.81 59.94
DP-3이 "connected"에 대한 grep이 표시 할 줄에 해상도를 표시하지 않는 것을 볼 수 있습니다. 따라서 연결된 개별 디스플레이의 해상도를 식별하기 위해 찾은 최고의 일관성 있고 안정적인 명령은 다음과 같습니다.
/usr/bin/xrandr --query|/usr/bin/grep -A 1 connected|grep -v connected
이것은 이것을 생성합니다 :
1440x900 59.89*+
--
1440x900 59.89*+ 74.98
--
1440x900 59.89*+
이 시점에서 하나의 포트에 대해서만 다른 해상도 나 grep을 선택하는 것은 매우 간단합니다.
3520x1200 pixels