35 lines
726 B
Bash
35 lines
726 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=sakura
|
|
export EDITOR=vim
|
|
export BC_ENV_ARGS="-lq $HOME/.bcrc"
|
|
|
|
# PATH
|
|
if [[ -d "$HOME/bin" ]]; then
|
|
export PATH="$HOME/bin:$PATH"
|
|
fi
|
|
|
|
# Android SDK stuff
|
|
#export ANDROID_HOME="/opt/Android_SDK"
|
|
#export NDK_ROOT="/opt/Android_SDK/ndk-bundle"
|
|
#export ANDROID_SDK_ROOT="/opt/Android_SDK"
|
|
#export ANT_ROOT="/usr/bin"
|
|
|
|
# Wine: do not change filetype associations
|
|
export WINEDLLOVERRIDES=winemenubuilder.exe=d
|
|
|
|
# Include host-specific .profile
|
|
[ -f ~/.profile.local ] && source ~/.profile.local
|
|
|