better orginization under home/files

This commit is contained in:
Don Harper 2023-10-07 08:19:42 -05:00
parent f6485eb7e4
commit 4a618b8f51
11 changed files with 10 additions and 10 deletions

11
home/files/bash/bash_logout Executable file
View file

@ -0,0 +1,11 @@
# ~/.bash_logout: executed by bash(1) when login shell exits.
# when leaving the console clear the screen to increase privacy
if [ "$SHLVL" = 1 ]; then
if [ -x /usr/bin/clear_console ]; then
/usr/bin/clear_console -q
else
clear
fi
fi