#!/bin/sh # # Restart laptop-mode-tools. case "$1" in hibernate|suspend) /etc/rc.d/laptop-mode stop ;; thaw|resume) /etc/rc.d/laptop-mode restart ;; *) ;; esac