From 742ddb459fdd57922d60c34f6fc3cc2edbf4ef13 Mon Sep 17 00:00:00 2001 From: romkatv Date: Mon, 29 Jul 2019 17:43:25 +0200 Subject: [PATCH] better diagnostics for small screens --- internal/configure.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/configure.zsh b/internal/configure.zsh index 42e93f20..bec9ae82 100644 --- a/internal/configure.zsh +++ b/internal/configure.zsh @@ -38,7 +38,7 @@ function _p9k_can_configure() { [[ ! -e $__p9k_zshrc || -w $__p9k_zshrc ]] || $0_error "$__p9k_zshrc_u is not writable" (( LINES >= __p9k_wizard_lines && COLUMNS >= __p9k_wizard_columns )) || - $0_error "terminal size too small" + $0_error "terminal size too small; must be at least $__p9k_wizard_columns x $__p9k_wizard_lines" } always { unfunction $0_error }