summaryrefslogtreecommitdiff
path: root/pm/sleep.d/00clear
blob: a5cd02b64ebcc66986ec651403486ef17390bf84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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