automate/020_xsessionrc.sh

15 lines
273 B
Bash

#!/usr/bin/env bash
conf_print_xsessionrc() {
cat <<EOF
# Source your zsh environment to inherit PATH and other variables
if [ -f ~/.zshrc ]; then
source ~/.zshrc
fi
# Optionally, set PATH directly if needed
# export PATH="$HOME/.local/bin:$PATH"
export PATH
EOF
}