summaryrefslogtreecommitdiff
path: root/.profile
blob: d03855545180136877ba96ac11c70a9cb3a6f5e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
echo .profile begin
# .profile
export ENV=~/.env
export LANG=en_US.UTF-8
export LANGUAGE=en_US:de_DE
export LC_ALL=en_US.UTF-8
export EDITOR=vim
export HISTSIZE=65535

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
#export GDK_BACKEND=wayland

HOSTNAME=$(cat /proc/sys/kernel/hostname)
[ -e .config/$HOSTNAME.profile ] && . .config/$HOSTNAME.profile
[ $0 != sh ] && [ -n "$BASH_VERSION" ] && shopt login_shell 2>&1 > /dev/null && [ -f ~/.bashrc ] && . ~/.bashrc

echo .profile end

if [ -e /home/mx/.nix-profile/etc/profile.d/nix.sh ]; then . /home/mx/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer