export PATH="${HOME}/.local/bin:${HOME}/.cargo/bin:${PATH}" # Make XDG_RUNTIME_DIR, required for some sessions if test -z "${XDG_RUNTIME_DIR}"; then export XDG_RUNTIME_DIR=/tmp/${UID}-runtime-dir if ! test -d "${XDG_RUNTIME_DIR}"; then mkdir "${XDG_RUNTIME_DIR}" chmod 0700 "${XDG_RUNTIME_DIR}" fi fi # Make TMPDIR mkdir -p "/tmp/${USER}" chmod 770 "/tmp/${USER}" export QT_QPA_PLATFORM=wayland-egl if [ -f ~/.config/termite/config.base ]; then cat ~/.config/termite/config.base ~/.config/termite/config.${HOSTNAME} > \ ~/.config/termite/config fi # make less more friendly for non-text input files, see lesspipe(1) if [ -x /usr/bin/lesspipe ]; then export LESSOPEN="|lesspipe %s" elif [ -x /usr/bin/lesspipe.sh ]; then export LESSOPEN="|lesspipe %s" fi # colored GCC warnings and errors export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'