blob: ffc139bfcc5d1f5aa530424388705825865fa217 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . ~/.bashrc
if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
exec startx
fi
export EDITOR="emacsclient"
export TERMINAL="alacriy"
export BROWSER="usr/bin/qutebrowser"
|