diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2021-04-28 17:07:19 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2021-04-28 17:07:19 +0530 |
commit | 0e39935aed57625eb7d762515afba757ded1fef9 (patch) | |
tree | 88616dc9cd07121dc77cd3b45d70e5c0a09aca85 /.zprofile | |
parent | 6e19a7323d39cfd9bee83cdc1cd37986c2723c8f (diff) |
.zprofile is now actually error free. everything starts up correctly, I've tested it
Diffstat (limited to '.zprofile')
-rw-r--r-- | .zprofile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -10,9 +10,8 @@ export WM="xmonad" export QT_QPA_PLATFORMTHEME=gtk2 export ZDOTDIR="$HOME/.config/zsh" -/zt/Programs/startpage-server & - -if [[ "$(tty)" = "dev/tty1" ]]; then - startx +if [[ -z $DISPLAY && $XDG_VTNR -eq 1 ]]; then + /zt/Programs/startpage-server & + startx fi |