From d388f7805a5e9f8b110fd99cefd082afb8255d6a Mon Sep 17 00:00:00 2001 From: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Date: Wed, 11 Aug 2021 09:10:03 -0300 Subject: [PATCH] add identity variables in .profile --- .id.profile.example | 12 ++++++++++++ .profile | 2 ++ 2 files changed, 14 insertions(+) create mode 100644 .id.profile.example diff --git a/.id.profile.example b/.id.profile.example new file mode 100644 index 0000000..00420e3 --- /dev/null +++ b/.id.profile.example @@ -0,0 +1,12 @@ +#!/bin/sh + +# ____ ____ _____ _ +# / ___| _ \| ___| __ ___(_)_ __ ___ +# | | _| |_) | |_ | '__/ _ \ | '__/ _ \ Guilherme Rugai Freire +# | |_| | _ <| _|| | | __/ | | | __/ https://grfreire.com +# \____|_| \_\_| |_| \___|_|_| \___| https://github.com/GRFreire +# + +export ID_NAME="" +export ID_EMAIL="" +export ID_SOCIAL_SECURITY_NUMBER="" diff --git a/.profile b/.profile index ace133a..006c0bd 100644 --- a/.profile +++ b/.profile @@ -7,6 +7,8 @@ # \____|_| \_\_| |_| \___|_|_| \___| https://github.com/GRFreire # +. "$HOME/.id.profile" + ### Default programs ### export EDITOR="nvim" export MANPAGER="sh -c 'col -bx | bat -l man -p'"