diff --git a/recipes-core/base-files/base-files_%.bbappend b/recipes-core/base-files/base-files_%.bbappend index 7ad159e..23af2ea 100644 --- a/recipes-core/base-files/base-files_%.bbappend +++ b/recipes-core/base-files/base-files_%.bbappend @@ -2,14 +2,14 @@ hostname = "diya" do_install:append () { cat << 'EOF' >> "${D}${sysconfdir}/profile" -# QT related setting export GDK_BACKEND=wayland export XDG_RUNTIME_DIR=/home/$USER/.xdg -export XDG_CONFIG_HOME=/etc/xdg/ -export PATH=$PATH:/home/$USER/bin +export XDG_CONFIG_HOME=/home/$USER/.config +export PATH=$PATH:/home/$USER/bin:/home/$USER/.local/bin +export LD_LIBRARY_PATH=/home/$USER/lib:/home/$USER/.local/lib if [ ! -e "$XDG_RUNTIME_DIR" ]; then mkdir -p "$XDG_RUNTIME_DIR" fi export TERM=xterm-256color EOF -} \ No newline at end of file +}