aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sh/.profile
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-02-12 14:33:40 -0600
committerToby Vincent <tobyv13@gmail.com>2023-02-12 14:33:40 -0600
commit72574860c3dafb3b6e5b05178ed49a567217ef3c (patch)
treed1dba0b4e949a9152df317c2accee60e422e5593 /sh/.profile
parentc4f558d92be3e11fdfbaec5ca5e2fa5ee0f6c27b (diff)
fix(zsh): move sourcing of .profile to .zprofile
Adopt the behavior of the system wide configuration Ref: https://wiki.archlinux.org/title/Zsh#Startup/Shutdown_files
Diffstat (limited to 'sh/.profile')
-rw-r--r--sh/.profile3
1 files changed, 3 insertions, 0 deletions
diff --git a/sh/.profile b/sh/.profile
index ce443ce..3f24b42 100644
--- a/sh/.profile
+++ b/sh/.profile
@@ -13,6 +13,9 @@ export BROWSER="xdg-open"
export PATH="$PATH:$HOME/.local/bin"
+# Adopt the behavior of the system wide configuration for application specific settings
+#
+# See: https://wiki.archlinux.org/title/Command-line_shell#/etc/profile
for script in "$XDG_CONFIG_HOME"/profile.d/*.sh; do
if [ -r "$script" ]; then
# shellcheck disable=1090