Comment 14 for bug 835972

Revision history for this message
Kevin Brubeck Unhammer (unhammer) wrote :

Note: for those who just want a quick fix, it might help to put something like this

#!/bin/sh
case "${1}" in
    resume|thaw)
 ( sleep 2 ; /usr/bin/killall /usr/lib/xfce4/notifyd/xfce4-notifyd ) &
 ( sleep 4 ; /usr/bin/killall /usr/lib/xfce4/notifyd/xfce4-notifyd ) &
     ;;
esac

in /etc/pm/sleep.d/49_killall_notify, remember to chmod +x.

(this is for Xubuntu; on regular Ubuntu it might be "killall notify-osd" instead of xfce4-notifyd, you might also need to tweak the sleep times)