dotfiles/.profile

28 lines
604 B
Bash

#!/bin/sh
#
# ~/.profile (includes ~/.profile.local)
#
# SSH key agent is started by systemd user
#export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.sock"
# GPG key stuff
export GPG_TTY=$(tty)
# Environment variables
export TERMINAL=mate-terminal
export EDITOR=vim
export BC_ENV_ARGS="-lq"
[[ -f "$HOME/.bcrc" ]] && export BC_ENV_ARGS="$BC_ENV_ARGS $HOME/.bcrc"
# PATH
[[ -d "$HOME/bin" ]] && export PATH="$HOME/bin:$PATH"
# Wine: do not change filetype associations
export WINEDLLOVERRIDES=winemenubuilder.exe=d
# Include host-specific .profile
[ -f ~/.profile.local ] && source ~/.profile.local