xdg: export various XDG_*_DIR variables
[~bandali/configs] / .profile
1 # ~/.profile: executed by the command interpreter for login shells.
2 # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
3 # exists.
4
5 # source host-specific profile
6 if [ -f "$HOME/.config/profiles/$(hostname)" ]; then
7 . "$HOME/.config/profiles/$(hostname)"
8 fi
9
10 export EDITOR="emacsclient -nw"
11 export VISUAL="emcl"
12
13 PATH="$HOME/usr/local/bin:$HOME/.local/bin:$PATH"
14 PATH="$HOME/.cabal/bin:$HOME/.cargo/bin:$HOME/.elan/bin:$PATH"
15 if [ -z "$IS_GUIX_SYSTEM" ]; then
16 PATH="$HOME/.config/guix/current/bin${PATH:+:}$PATH"
17 INFOPATH="$HOME/.config/guix/current/share/info${INFOPATH:+:}$INFOPATH"
18 export GUIX_LOCPATH="$HOME/.guix-profile/lib/locale"
19 fi
20 export PATH
21 export INFOPATH
22
23 export XDG_CONFIG_HOME="$HOME/.config"
24 export XDG_DATA_HOME="$HOME/.local/share"
25
26 if [ -f "$HOME/.config/user-dirs.dirs" ]; then
27 set -a
28 . "$HOME/.config/user-dirs.dirs"
29 set +a
30 fi
31
32 export INPUTRC="$XDG_CONFIG_HOME"/readline/inputrc
33 export SCREENRC="$XDG_CONFIG_HOME"/screen/screenrc
34
35 export MAILDIR="$HOME/mail"
36 export CVS_RSH="ssh"
37
38 export GOPATH="$HOME/src/go"
39
40 # if running bash
41 if [ -n "$BASH_VERSION" ]; then
42 # include .bashrc if it exists
43 if [ -f "$HOME/.bashrc" ]; then
44 . "$HOME/.bashrc"
45 fi
46 fi
47
48 if [ -z "$IS_GUIX_SYSTEM" ]; then
49 # if guix is installed
50 if [ -x "$(command -v guix)" ]; then
51 SSL_CERT_DIR="$HOME/.guix-profile/etc/ssl/certs"
52 if [ -d "$SSL_CERT_DIR" -o -h "$SSL_CERT_DIR" ]; then
53 export SSL_CERT_DIR
54 export SSL_CERT_FILE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt"
55 else
56 printf "it seems you forgot to \`guix install nss-certs\'\n"
57 fi
58 GUIX_PROFILE="$HOME/.guix-profile"
59 . "$GUIX_PROFILE/etc/profile"
60 fi
61 fi
62
63 # start an ssh-agent (with guix's openssh)
64 if [ -z "$IS_GUIX_SYSTEM" ]; then
65 if ! pgrep -u "$USER" ssh-agent > /dev/null; then
66 ssh-agent > ~/.ssh-agent-thing
67 fi
68 if [[ ! "$SSH_AUTH_SOCK" ]]; then
69 eval "$(<~/.ssh-agent-thing)"
70 fi
71 fi
72
73 # footenote: when on a foreign distro and using Xfce, don't forget to
74 # disable its auto-start of gpg- and ssh-agent, by issuing
75 # xfconf-query -c xfce4-session -p /startup/ssh-agent/enabled -n -t bool -s false
76 # xfconf-query -c xfce4-session -p /startup/gpg-agent/enabled -n -t bool -s false
77 # see https://docs.xfce.org/xfce/xfce4-session/advanced#ssh_and_gpg_agents
78 # also, MATE does something similar with gnome-keyring-daemon:
79 # http://william.shallum.net/random-notes/disabling-gnome-keyring-daemon-ssh-agent-on-mate-desktop