# .profile echo .profile begin export ENV=~/.env export LANG=en_US.UTF-8 export LANGUAGE=en export LC_ALL=en_US.UTF-8 export EDITOR=vim #export GDK_BACKEND=wayland export MAKEFLAGS=-j`lscpu | grep '^CPU(s):' | awk -F' ' '{ print $2 }'` export CFLAGS="-O2 -pipe -march=native" export CXXFLAGS="${CFLAGS}" # Sway compatiblity https://github.com/swaywm/sway/issues/595 export _JAVA_AWT_WM_NONREPARENTING=1 HOSTNAME=$(cat /proc/sys/kernel/hostname) [ -e .config/$HOSTNAME.profile ] && . .config/$HOSTNAME.profile # Load .bashrc in login shells for bash [ $0 != sh ] && [ -n "$BASH_VERSION" ] \ && shopt login_shell 2>&1 > /dev/null \ && [ -f ~/.bashrc ] && . ~/.bashrc \ && echo "$(date): .bashrc loaded from .profile" >> ~/debug_logs echo .profile end