dotfiles/.profile

29 lines
628 B
Text
Raw Normal View History

2018-11-01 01:04:07 +01:00
#!/bin/sh
#
# ~/.profile (includes ~/.profile.local)
#
# 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
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
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
[[ -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
# Include host-specific .profile
[ -f ~/.profile.local ] && source ~/.profile.local