dotfiles/.config/shell/logout.sh
Alexander Hess 9c4ea2ecfe
Initial version of the shells' dotfiles
- add config files for both bash and zsh
- as some utilities regard git to be present, git's config files
  are included as well
2022-07-27 20:15:10 +02:00

7 lines
228 B
Bash

# This file is sourced by a login shell upon logout
# Clear the screen to increase privacy
if [ "$SHLVL" = 1 ]; then
[ -x /usr/bin/clear ] && /usr/bin/clear || [ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
fi