diff options
author | Thanos Apollo <[email protected]> | 2022-08-02 17:10:12 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2022-08-02 17:10:12 +0300 |
commit | e36ed432968130bd5bf0f54e54377b98fa48c4a5 (patch) | |
tree | 04608a8c5641871d0c7ae3395227c92a1f404509 /.bash_profile | |
parent | 9efe6a5694a2f37c3d15333706649858d00a611e (diff) |
Update doom path, add auto starx when logged in
Diffstat (limited to '.bash_profile')
-rw-r--r-- | .bash_profile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.bash_profile b/.bash_profile index 7fe4500..2fa4b9f 100644 --- a/.bash_profile +++ b/.bash_profile @@ -4,11 +4,13 @@ [[ -f ~/.bashrc ]] && . ~/.bashrc +if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then + exec startx +fi export EDITOR="emacsclient" -export TERMINAL="alacritty" -export BROWSER="qutebrowser" -export READER="zathura" +export TERMINAL="alacriy" +export BROWSER="usr/bin/qutebrowser" |