summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc9
1 files changed, 5 insertions, 4 deletions
diff --git a/.bashrc b/.bashrc
index 9af00866..ce0e1b12 100644
--- a/.bashrc
+++ b/.bashrc
@@ -8,10 +8,6 @@
alias ls='ls -lah --color=auto'
PS1='[\u@\h \W]\$ '
-if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
- exec startx
-fi
-
alias cfgc='/usr/bin/git --git-dir=$HOME/.mycfg_cross_platform/ --work-tree=$HOME'
alias cfgl='/usr/bin/git --git-dir=$HOME/.mycfg_local/ --work-tree=$HOME'
@@ -22,3 +18,8 @@ export XDG_DATA_HOME="$HOME/.local/share"
export SSH_AUTH_SOCK="XDG_RUNTIME_DIR/ssh-agent.socket"
export MANPAGER='nvim +Man!'
+
+# startx when login, should be put after environmental variables so .xinitrc can use $XDG_CONFIG_HOME
+if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
+ exec startx
+fi