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?
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?