1
0
mirror of https://github.com/lxsang/meta-rpi-diya.git synced 2024-09-16 15:26:39 +02:00
meta-rpi-diya/recipes-core/base-files/base-files_%.bbappend

15 lines
349 B
Plaintext
Raw Normal View History

hostname = "diya"
do_install:append () {
cat << 'EOF' >> "${D}${sysconfdir}/profile"
# QT related setting
2023-07-26 15:02:10 +02:00
export GDK_BACKEND=wayland
2023-07-26 00:59:52 +02:00
export XDG_RUNTIME_DIR=/home/$USER/.xdg
2023-07-27 14:42:12 +02:00
export XDG_CONFIG_HOME=/etc/xdg/
2023-07-26 00:59:52 +02:00
export PATH=$PATH:/home/$USER/bin
if [ ! -e "$XDG_RUNTIME_DIR" ]; then
mkdir -p "$XDG_RUNTIME_DIR"
fi
2023-07-26 02:53:13 +02:00
export TERM=xterm-256color
EOF
}