2019-01-09 23:06:06 +01:00
|
|
|
#
|
2021-05-28 19:31:58 +02:00
|
|
|
# ~/.profile -- Included by .bash_profile; includes ~/.profile.local
|
2019-01-09 23:06:06 +01:00
|
|
|
#
|
|
|
|
|
|
2019-01-09 22:29:16 +01:00
|
|
|
# SSH key agent is started by systemd user
|
2019-08-16 19:32:31 +02:00
|
|
|
#export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.sock"
|
2018-11-01 01:04:07 +01:00
|
|
|
|
|
|
|
|
# GPG key stuff
|
|
|
|
|
export GPG_TTY=$(tty)
|
|
|
|
|
|
|
|
|
|
# Environment variables
|
2021-05-28 19:31:58 +02:00
|
|
|
export TERM=xterm-color
|
2019-04-23 11:56:49 +02:00
|
|
|
export TERMINAL=mate-terminal
|
2018-11-01 01:04:07 +01:00
|
|
|
export EDITOR=vim
|
2021-02-13 17:24:59 +01:00
|
|
|
export BROWSER=firefox
|
2019-01-11 02:15:40 +01:00
|
|
|
export BC_ENV_ARGS="-lq"
|
|
|
|
|
[[ -f "$HOME/.bcrc" ]] && export BC_ENV_ARGS="$BC_ENV_ARGS $HOME/.bcrc"
|
2018-11-01 01:04:07 +01:00
|
|
|
|
|
|
|
|
# PATH
|
2019-01-11 02:15:40 +01:00
|
|
|
[[ -d "$HOME/bin" ]] && export PATH="$HOME/bin:$PATH"
|
2018-11-01 01:04:07 +01:00
|
|
|
|
|
|
|
|
# Wine: do not change filetype associations
|
|
|
|
|
export WINEDLLOVERRIDES=winemenubuilder.exe=d
|
|
|
|
|
|
2022-08-22 22:51:41 +02:00
|
|
|
# Firefox: Enable pixel-perfect scrolling
|
|
|
|
|
export MOZ_USE_XINPUT2=1
|
|
|
|
|
|
2019-01-09 23:06:06 +01:00
|
|
|
# Include host-specific .profile
|
|
|
|
|
[ -f ~/.profile.local ] && source ~/.profile.local
|