Comment 11 for bug 769314

Revision history for this message
Maxim Samoilenko (maxim-samoilenko) wrote : Re: System bell broken in Natty/Unity (despite heroic...)

On my laptop the bell is also getting muted upon resume.I had to make following /etc/pm/sleep.d script to override that:
case "$1" in
  resume|thaw) { sleep 5; DISPLAY=:0 xset b 100; } & ;;
esac

Is there any more elegant solution for that?