From 895b6166bbb01cdcc3d62ff8b1e9239fe8a84e2b Mon Sep 17 00:00:00 2001 From: primardj Date: Fri, 26 Jan 2024 20:40:58 +0000 Subject: [PATCH] add the while and the command neofetch --- nfetch-startup | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nfetch-startup b/nfetch-startup index fc9669e..be5387b 100755 --- a/nfetch-startup +++ b/nfetch-startup @@ -31,4 +31,16 @@ for i in "$@"; do done +neofetch + +Goout="1" + +while [ "$Goout" == "1" ]; do + read -n1 -s value + if echo "$value" | grep -q "q" + then + Goout=0 + fi +done +