From a91f4a56427809a09bf9dff0406838ecb6b1ceb4 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 27 Feb 2021 22:48:22 +0200 Subject: [PATCH] rc/profile: introduce .environment2 --- rc/profile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rc/profile b/rc/profile index 724f181b..6abd714c 100644 --- a/rc/profile +++ b/rc/profile @@ -32,3 +32,8 @@ export XCURSOR_DISCOVER=1 if [ -f ~/.environment ]; then . ~/.environment fi + +# Something that scripts here won't attempt to overwrite +if [ -f ~/.environment2 ]; then + . ~/.environment2 +fi