dotfiles/files/xprofile.sh

14 lines
398 B
Bash
Raw Normal View History

2023-07-31 14:25:31 +01:00
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
export LANG=en_GB.UTF-8
export ARCHFLAGS="-arch x86_64"
export MOZ_USE_XINPUT2=1
2023-07-31 21:19:16 +01:00
export SSH_ASKPASS=ksshaskpass
2023-07-31 14:25:31 +01:00
if ! pgrep -u "$USER" ssh-agent > /dev/null; then
ssh-agent > "$XDG_RUNTIME_DIR/ssh-agent.env"
fi
if [[ ! -f "$SSH_AUTH_SOCK" ]]; then
source "$XDG_RUNTIME_DIR/ssh-agent.env" >/dev/null
fi