# # ~/.profile -- Included by .bash_profile; includes ~/.profile.local # # SSH key agent [[ -e "$XDG_RUNTIME_DIR/gcr/ssh" ]] && export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/gcr/ssh" # GPG key stuff export GPG_TTY=$(tty) # Environment variables export TERM=xterm-color export TERMINAL=mate-terminal export EDITOR=vim export BROWSER=firefox export BC_ENV_ARGS="-lq" [[ -f "$HOME/.bcrc" ]] && export BC_ENV_ARGS="$BC_ENV_ARGS $HOME/.bcrc" # PATH [[ -d "$HOME/.local/bin" ]] && export PATH="$HOME/.local/bin:$PATH" [[ -d "$HOME/bin" ]] && export PATH="$HOME/bin:$PATH" # Wine: do not change filetype associations export WINEDLLOVERRIDES=winemenubuilder.exe=d # Firefox: Enable pixel-perfect scrolling export MOZ_USE_XINPUT2=1 # Include host-specific .profile [ -f ~/.profile.local ] && source ~/.profile.local