Load local variables from .profile-local and .profile-private

This commit is contained in:
2020-06-25 23:14:23 +08:00
parent 700cab8f93
commit 55c71ac045

View File

@@ -12,8 +12,9 @@ umask 026
# effectively unlimited history # effectively unlimited history
export HISTSIZE=10000000 export HISTSIZE=10000000
# source private variables # source local variables
[ -f "$HOME/.profile-priivate" ] && source "$HOME/.profile-private" [ -f "$HOME/.profile-local" ] && source "$HOME/.profile-local"
[ -f "$HOME/.profile-private" ] && source "$HOME/.profile-private"
# firefox hardware acceleration # firefox hardware acceleration
export MOZ_USE_OMTC=1 export MOZ_USE_OMTC=1