diff options
Diffstat (limited to '.bash_profile')
-rw-r--r-- | .bash_profile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.bash_profile b/.bash_profile index 3b143e96..429ab6cb 100644 --- a/.bash_profile +++ b/.bash_profile @@ -33,7 +33,7 @@ export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket" export INPUTRC="$XDG_CONFIG_HOME/readline/inputrc" #export QT_QPA_PLATFORMTHEME=qt5ct export QT_STYLE_OVERRIDE=kvantum -export SDCV_PAGER="less --quit-if-one-screen -RX" +export SDCV_PAGER='less --quit-if-one-screen -RX' export SXHKD_SHELL=sh export _ZO_ECHO=1 @@ -61,6 +61,6 @@ export SCRWIDTH=1600 export SCRHEIGHT=900 # startx when login, should be put after environmental variables for .xinitrc to use -if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then +if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" -eq 1 ]; then exec startx fi |