Hello everyone,
I also encountered the same issue after the recent stable update. It seems that with the removal of the bashrc-manjaro
package and the merging of bash configuration files in the bash
package, the .profile
file is no longer being sourced automatically.
To resolve this issue, I added the following line to my .bash_profile
:
[[ -f ~/.profile ]] && . ~/.profile
This line checks if the .profile
file exists and sources it if it does. After making this change, my environment variables set in the .profile
file are now being applied correctly.