diff --git a/.config/x11/xprofile b/.config/x11/xprofile index bf998d4..05f8a48 100755 --- a/.config/x11/xprofile +++ b/.config/x11/xprofile @@ -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"