#!/bin/sh case "${1}" in hibernate|suspend) # Switch nvidia card on before going to sleep, avoids the "constant on" # bug that occurs after 2 suspend/resume cycles /etc/init.d/nvidiaoff stop ;; resume|thaw) # Switch nvidia card off /etc/init.d/nvidiaoff start ;; esac