forked from extern/nix-config
a3daa8ed67
In reality, zsh is not needed here and shouldn't be supported. Many defaults of fish require hacky solutions to work in zsh; the investment and maintenance needed is not worth it. Eventually, zsh will be removed completely. This is the first step towards accomplishing that goal. Unused files and other commands will be simplified in attempt to make my dotfiles more minimal and use the defaults, which helps a lot when using a shell without my settings.
8 lines
259 B
Bash
8 lines
259 B
Bash
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
|
# Copyright (C) 2017-2018 Donovan Glover
|
|
|
|
# Automatically start X server on login (tty1)
|
|
if [ -z "$DISPLAY" ] && [ -n "$XDG_VTNR" ] && [ "$XDG_VTNR" -eq 1 ]; then
|
|
exec startx
|
|
fi
|