From 1c77bb58e3c3d6d5d6194cdaf1743676b7ec90b1 Mon Sep 17 00:00:00 2001 From: pika Date: Mon, 12 May 2025 15:47:32 +0200 Subject: [PATCH] addet silent option --- yazi.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/yazi.sh b/yazi.sh index d3cfd61..38a793c 100644 --- a/yazi.sh +++ b/yazi.sh @@ -100,6 +100,13 @@ } if getImports; then + case "$@" in + --silent | -s) + silent=true + echo_warning "Executing script silently.." + ;; + *) silent=false ;; + esac main fi }