Source profile script

This commit is contained in:
dabruh 2024-04-12 16:07:11 +02:00
parent 597c73c9c3
commit ac3fee7596
1 changed files with 4 additions and 0 deletions

View File

@ -19,3 +19,7 @@ done >/dev/null 2>&1
# Ensure that xrdb has finished running before moving on to start the WM/DE.
[ -n "$xrdbpid" ] && wait "$xrdbpid"
# Source .config/shell/profile
profile_path="${XDG_CONFIG_HOME:-$HOME/.config}/shell/profile"
[ -f "$profile_path" ] && . "$profile_path"