목차

XRandr

해상도 변경

모니터 주사율(refresh rate hz) 설정

xrandr --output DP-1-1 --mode 3840x2160 --rate 60.00

디스플레이 끄기

xrandr --output VGA1 --off

듀얼 모니터

# LVDS1(랩탑의 기본 디스플레이) 오른쪽에 위치하는 화면으로 만든다.
xrandr --output VGA1 --mode 1024x768 --right-of LVDS1
 
# Laptop 화면을 Primary로
xrandr --output LVDS1 --primary

Scale / HiDPI

xrandr \
  --output DP-4 --primary --pos 0x0 --scale 2x2 \
  --output DP-2 --pos 3840x0 --scale 2x2 \
  --output eDP-1-1 --off
xrandr --dpi 120

밝기 조절 - brightness

xrandr -q | grep " connected"
# 목록에서 모니터 이름 확인
 
xrandr --output LVDS1 --brightness 0.5 # 1.0 이 max

arandr

autorandr

참조