rc.local과 xrandr이 함께 작동하지 않습니다

rc.local과 xrandr이 함께 작동하지 않습니다

그래서 시작할 때 화면 밝기에 문제가 있습니다.

그리고 올바른 설정으로 설정하기 위해 많은 것을 시도했는데 이 명령을 호출할 때 xrandr만이 나를 위해 작동하기 때문에 운이 좋지 않습니다.

xrandr --output eDP --brightness 1

내 우분투에는 파일이 없었기 /etc/rc.local때문에 파일을 만들어 실행 가능하게 만들었습니다.

~ » ls -laht /etc | grep rc.local
-rwxr-xr-x   1 root root    342 lis 29 19:26 rc.local

파일의 내용은

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

xrandr --output eDP --brightness 1

exit 0

시스템을 재부팅하면 실패 상태가 표시됩니다.rc-local.service

~ » sudo systemctl status rc-local.service
● rc-local.service - /etc/rc.local Compatibility
     Loaded: loaded (/lib/systemd/system/rc-local.service; enabled-runtime; vendor preset: enabled)
    Drop-In: /usr/lib/systemd/system/rc-local.service.d
             └─debian.conf
     Active: failed (Result: exit-code) since Mon 2021-11-29 19:27:10 CET; 14min ago
       Docs: man:systemd-rc-local-generator(8)
    Process: 920 ExecStart=/etc/rc.local start (code=exited, status=1/FAILURE)

lis 29 19:27:10 greenery systemd[1]: Starting /etc/rc.local Compatibility...
lis 29 19:27:10 greenery rc.local[924]: Can't open display
lis 29 19:27:10 greenery systemd[1]: rc-local.service: Control process exited, code=exited, status=1/FAILURE
lis 29 19:27:10 greenery systemd[1]: rc-local.service: Failed with result 'exit-code'.
lis 29 19:27:10 greenery systemd[1]: Failed to start /etc/rc.local Compatibility.

내가 뭘 잘못한 걸까요?

편집 1: 이것을 시작에 넣으면 작동하지 않습니다. 시작 구성

관련 정보