X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=contrib%2Fpm-utils%2F40autorandr;fp=contrib%2Fpm-utils%2F40autorandr;h=f44739a609e2aa032ed868c584a773d48851c234;hb=e1b9a6b11247259c710209eede3d3fd288416233;hp=6dcb086d2c8c083f1cb554c5e274307083e06642;hpb=105e2954ceaac549670b91c3d60cd0e03ba0718b;p=deb_pkgs%2Fautorandr.git diff --git a/contrib/pm-utils/40autorandr b/contrib/pm-utils/40autorandr index 6dcb086..f44739a 100755 --- a/contrib/pm-utils/40autorandr +++ b/contrib/pm-utils/40autorandr @@ -10,10 +10,6 @@ export PROCPS_USERLEN=32 detect_display() { - # Wait for the system to recognize the changed state, see bug #30 - # Note the ampersand below, this runs asynchroneously. - sleep 5 - for X in /tmp/.X11-unix/X*; do D="${X##/tmp/.X11-unix/X}" # Prefer w to who, see bug #39 @@ -43,8 +39,12 @@ detect_display() done } +if grep -q systemd $(readlink -f $(awk '{print $1}' /proc/1/cmdline)) && [ "$2" = "udev" ]; then + exec /bin/systemctl start autorandr-resume.service +fi + case "$1" in thaw|resume) - detect_display & + detect_display ;; esac