не включается монитор после выхода из standby или suspend
Добрый день
Сегодня обновил свой debian testing и появилась такая проблема: раньше по закрытию ноута включался скринсейвер, теперь же комп засыпает (или standby или suspend, не пойму).. в принципе пусть себе засыпает.. но просыпаясь не включается экран.. и что не делай, включается только после полной перезагрузки (резет)..
в /etc/acpi/lid.sh вообще вырезал pm-suspend строки
#!/bin/sh
test -f /usr/share/acpi-support/state-funcs || exit 0
. /usr/share/acpi-support/power-funcs
. /usr/share/acpi-support/policy-funcs
. /etc/default/acpi-support
[ -x /etc/acpi/local/lid.sh.pre ] && /etc/acpi/local/lid.sh.pre
CheckPolicy && exit
grep -q closed /proc/acpi/button/lid/*/state
if [ $? -eq 0 ]
then
d=/tmp/.X11-unix
for x in $d/X*; do
displaynum=${x#$d/X}
getXuser;
if [ x$XAUTHORITY != x ]; then
export DISPLAY=:$displaynum
if [ x$RADEON_LIGHT = xtrue ]; then
[ -x /usr/sbin/radeontool ] && radeontool light on
fi
case "$DISPLAY_DPMS" in
xset)
su $XUSER -s /bin/sh -c "xset dpms force on"
;;
xrandr)
su $XUSER -s /bin/sh -c "xrandr --output $XRANDR_OUTPUT --auto"
;;
vbetool)
/usr/sbin/vbetool dpms on
;;
esac
if pidof xscreensaver > /dev/null; then
if on_ac_power; then
su $XUSER -s /bin/sh -c "xscreensaver-command -unthrottle"
fi
su $XUSER -s /bin/sh -c "xscreensaver-command -deactivate"
fi
else
if [ -x$DISPLAY_DPMS_NO_USER = xtrue ]; then
[ -x /usr/sbin/vbetool ] && /usr/sbin/vbetool dpms on
fi
fi
done
fi
[ -x /etc/acpi/local/lid.sh.post ] && /etc/acpi/local/lid.sh.post
но тем не менее, по закрытию крышки он все равно засыпает и просыпаясь - черный экран... в настройках xfce4 стоит что бы НЕ засыпал по закрытию но лишь блокировал экран и не более того..
хотелось бы либо что бы не засыпал либо просыпаясь что бы экран работал, но вот куда копать то?..