rc/profile: introduce .environment2

This commit is contained in:
Aminda Suomalainen 2021-02-27 22:48:22 +02:00
parent 51b0b5dde5
commit a91f4a5642
Signed by: Mikaela
GPG Key ID: 99392F62BAE30723
1 changed files with 5 additions and 0 deletions

View File

@ -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