blob: a4e4eb26ace134e8ebdd5413f6e521c826b0c37f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#
# ~/.bash_profile
#
if [ -n "$DESKTOP_SESSION" ];then
eval $(gnome-keyring-daemon --start)
export SSH_AUTH_SOCK
fi
[[ -f ~/.bashrc ]] && . ~/.bashrc
[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx
|