From 8681fca560ac8129b1d74e4c1ce6fd9d48b2c7ba Mon Sep 17 00:00:00 2001
From: Soispha <soispha@vhack.eu>
Date: Wed, 28 Feb 2024 21:11:19 +0100
Subject: fix(hm/conf/zsh/command_not_found.sh): Output a status message for
 shell

---
 hm/soispha/conf/zsh/config/command_not_found.sh | 4 ++++
 1 file changed, 4 insertions(+)

(limited to 'hm/soispha/conf/zsh/config/command_not_found.sh')

diff --git a/hm/soispha/conf/zsh/config/command_not_found.sh b/hm/soispha/conf/zsh/config/command_not_found.sh
index f3339451..20e3aa0e 100644
--- a/hm/soispha/conf/zsh/config/command_not_found.sh
+++ b/hm/soispha/conf/zsh/config/command_not_found.sh
@@ -29,6 +29,10 @@ command_not_found_handle() {
 
         # These will not return 127 if they worked correctly.
 
+        >&2 cat <<EOF
+The program '$cmd' is currently not installed. A shell will be opened
+with it.
+EOF
         if nix build "$toplevel#$attrs" --no-link; then
             nix shell "$toplevel#$attrs"
             return $?
-- 
cgit 1.4.1