2018-11-01 01:04:07 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
2019-01-09 23:06:06 +01:00
|
|
|
#
|
|
|
|
|
# ~/.profile (includes ~/.profile.local)
|
|
|
|
|
#
|
|
|
|
|
|
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
|
2019-04-23 11:56:49 +02:00
|
|
|
export TERMINAL=mate-terminal
|
2018-11-01 01:04:07 +01:00
|
|
|
export EDITOR=vim
|
2019-10-08 13:48:02 +02:00
|
|
|
export BROWSER=waterfox
|
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
|
|
|
|
|
|
2019-01-09 23:06:06 +01:00
|
|
|
# Include host-specific .profile
|
|
|
|
|
[ -f ~/.profile.local ] && source ~/.profile.local
|
|
|
|
|
|