(Arch, systemd)를 사용하여 덮개를 닫을 때 노트북이 항상 잠자기 상태가 아님 잠자기 (스크린 로커 포함)되도록

아치 위키에 이어, 기계가 잠자기 (스크린 로커 포함)되도록 뚜껑을 닫는 이벤트를 설정했습니다. 이것은 시간의 약 50 %에서 작동합니다. 다른 경우에는 화면이 잠기지 만 잠자기 상태가 아닙니다.

일부 프로세스가 깨어있는 것을 추측하지만 어떤 프로세스를 모릅니다. 어떤 프로세스가 기계를 깨우 게 하는지를 알 수있는 방법이 있습니까?

나는 아치 리눅스에서 위키를 따르고 있었다 . 나는 다음과 같은 결과를 얻었습니다.

/etc/systemd/logind.conf:

#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.
#
# Entries in this file show the compile time defaults.
# You can change settings by editing this file.
# Defaults can be restored by simply deleting this file.
#
# See logind.conf(5) for details.

[Login]
#NAutoVTs=6
#ReserveVT=6
#KillUserProcesses=no
#KillOnlyUsers=
#KillExcludeUsers=root
#InhibitDelayMaxSec=5
#HandlePowerKey=poweroff
#HandleSuspendKey=suspend
#HandleHibernateKey=hibernate
HandleLidSwitch=suspend
#HandleLidSwitchDocked=ignore
#PowerKeyIgnoreInhibited=no
#SuspendKeyIgnoreInhibited=no
#HibernateKeyIgnoreInhibited=no
LidSwitchIgnoreInhibited=yes
#HoldoffTimeoutSec=30s
IdleAction=lock
IdleActionSec=30min
#RuntimeDirectorySize=10%
#RemoveIPC=yes
#InhibitorsMax=8192
#SessionsMax=8192
#UserTasksMax=33%

그리고 /etc/systemd/system/suspend.target.wants/resume@exhuma.service:

[Unit]
Description=User resume actions
After=suspend.target

[Service]
User=%I
Type=simple
Environment=DISPLAY=:0
# ExecStartPre= -/usr/bin/pkill -u %u unison ; /usr/local/bin/music.sh stop ; /usr/bin/mysql -e 'slave stop'
# ExecStart=/usr/bin/i3lock -c 000022
ExecStart=/usr/bin/slock
ExecStartPost=/usr/bin/sleep 1

[Install]
WantedBy=suspend.target