dotfiles/system/.bash_logout
Severin Kaderli fec74b795e Add bash shebang to files
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
2018-12-13 22:30:13 +01:00

8 lines
232 B
Bash

#!/bin/bash
# ~/.bash_logout: executed by bash(1) when login shell exits.
# 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