You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
584 B
26 lines
584 B
# vim: set ft=sh sw=2 et :
|
|
|
|
# when leaving the console clear the screen to increase privacy
|
|
|
|
if [ "$SHLVL" = 1 ]; then
|
|
[ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
|
|
fi
|
|
|
|
# When leaving the console clear the screen to increase privacy. Also clear the
|
|
# scroll-back buffer by switching to tty63 and back.
|
|
case "$(tty)" in
|
|
/dev/tty[0-9])
|
|
t=$(v=`tty` ; echo ${v##*ty})
|
|
clear
|
|
chvt 63; chvt "$t"
|
|
;;
|
|
|
|
/dev/tty[0-9][0-9])
|
|
t=$(v=`tty` ; echo ${v##*ty})
|
|
clear
|
|
chvt 63; chvt "$t"
|
|
;;
|
|
|
|
*)
|
|
;;
|
|
esac
|