#!/bin/sh . "${PM_FUNCTIONS}" case "$1" in hibernate|suspend*) fgconsole |savestate console chvt 63 TERM=linux clear ;; thaw|resume) state_exists console || exit 1 chvt $(restorestate console) deallocvt 63 ;; *) ;; esac