From 87e854dd73f6c5234d4b6cb9e4cd5a66897f1b13 Mon Sep 17 00:00:00 2001 From: pvincent Date: Mon, 10 Aug 2026 09:13:52 +0400 Subject: [PATCH] terminfo compilation --- lib/init.bash | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/init.bash b/lib/init.bash index 6cf229a..85fa048 100755 --- a/lib/init.bash +++ b/lib/init.bash @@ -91,9 +91,9 @@ function in_azerty_zone { } function fix_terminfo_ghostty { - if ! infocmp xterm-ghostty >/dev/null; then - tic -x "$MIAOU_BASH_DIR"/assets/terminfo/ghostty - echo 'terminfo ghostty compiled' + if ! infocmp xterm-ghostty >/dev/null 2>&1; then + tic -x "$MIAOU_BASH_DIR"/assets/terminfo/ghostty 2>/dev/null + echo 'terminfo ghostty succesfully compiled' fi }