about summary refs log tree commit diff
path: root/.config/zsh/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to '.config/zsh/.zshrc')
-rw-r--r--.config/zsh/.zshrc2
1 files changed, 1 insertions, 1 deletions
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