From 998e4343bf8f81204cc8b852f21aa273698cbd43 Mon Sep 17 00:00:00 2001 From: natemaia Date: Wed, 24 Oct 2018 23:30:30 -0700 Subject: [PATCH] Fix .zprofile --- home/.zprofile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/.zprofile b/home/.zprofile index 769d657d..855662cf 100644 --- a/home/.zprofile +++ b/home/.zprofile @@ -2,6 +2,6 @@ # sourced by zsh when used as a login shell # automatically run startx when logging in on tty1 -if [[ ! $DISPLAY && $TERM == 'linux' && $XDG_VTNR -eq 1 ]]; then - #exec startx -- vt1 -keeptty > ~/.local/share/xorg/xorg.log +if [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then + #exec startx -- vt1 >/dev/null 2>&1 fi