From 34fcfc8ca9385b3d77d8a56b06b66b27bebd2840 Mon Sep 17 00:00:00 2001 From: Starfall Date: Sat, 19 Nov 2022 23:13:17 -0600 Subject: zsh: only startx if x is available --- .config/zsh/.zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.config/zsh') diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 4234df4..23adb40 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -37,6 +37,6 @@ unset conf tty -s && fortune $HOME/fortunes 2>/dev/null ||: # startx if not already running an x server (e.g. via display manager) and only on tty1 -if [ -z "${DISPLAY}" ] && [ "$(tty)" = "/dev/tty1" ]; then +if (command -v startx) && [ -z "${DISPLAY}" ] && [ "$(tty)" = "/dev/tty1" ]; then exec startx fi -- cgit