dotfiles/profile
M1dgard 99b1911f98
[xinitrc/profile] Fix bug and set terminal to st
Removing xfce4-terminal configuration
2018-08-19 09:44:30 +02:00

22 lines
408 B
Bash

export PATH="$PATH:$HOME/.local/bin"
export EDITOR=vim
export VISUAL="$EDITOR"
export TERMINAL=st
if which nproc >/dev/null 2>&1; then
export MAKEFLAGS="-j $(( $(nproc) * 3 / 4 ))"
else
export MAKEFLAGS="-j 2"
fi
export PARINIT="rTbgqR B=.,?_A_a Q=_s>|"
export PIPENV_VENV_IN_PROJECT=true
# Automatically start x when logging in on tty1
if [ ! "$DISPLAY" -a "$XDG_VTNR" -eq 1 ]; then
exec startx
fi