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
This commit is contained in:
Alexander Hess 2022-07-11 04:05:56 +02:00
commit 9c4ea2ecfe
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
17 changed files with 2855 additions and 0 deletions

7
.config/shell/logout.sh Normal file
View file

@ -0,0 +1,7 @@
# 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