From ac3fee7596df2f817f403d1141f9ae6b0dfa2590 Mon Sep 17 00:00:00 2001 From: dabruh <11458706-dabruh@users.noreply.gitlab.com> Date: Fri, 12 Apr 2024 16:07:11 +0200 Subject: [PATCH] Source profile script --- .config/x11/xprofile | 4 ++++ 1 file changed, 4 insertions(+) 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"