From 23f6525aff7f53dba0b6ab2c5bd91b97e0b98baf Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Fri, 14 May 2021 17:13:50 -0400 Subject: [PATCH] fish: Don't start X at login Now we can do some cool stuff in tty1 when we decide to not start a display manager. --- fish/.config/fish/config.fish | 7 ------- 1 file changed, 7 deletions(-) diff --git a/fish/.config/fish/config.fish b/fish/.config/fish/config.fish index a1a4871..8dc05ef 100644 --- a/fish/.config/fish/config.fish +++ b/fish/.config/fish/config.fish @@ -92,10 +92,3 @@ if not set -q set_abbr abbr nano "vim" # The explanation is in the name abbr emacs "vim" # No need to start another operating system end - -# Start X at login -if status --is-login - if test -z "$DISPLAY" -a $XDG_VTNR = 1 - exec startx -- -keeptty - end -end