From 18d4948a12434f7e302e556761c88e604f45b392 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Mon, 8 Mar 2021 09:10:05 +0100 Subject: [PATCH] Add help menu --- arch-config/scripts/arch-config.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch-config/scripts/arch-config.sh b/arch-config/scripts/arch-config.sh index 221ba7b9..7f23b339 100755 --- a/arch-config/scripts/arch-config.sh +++ b/arch-config/scripts/arch-config.sh @@ -57,6 +57,9 @@ if [[ "$#" -eq 1 ]]; then # -t/--theme to change theme if [[ "$1" == "-t" || "$1" == "--theme" ]]; then func_seltheme + elif [[ "$1" == "-h" || "$1" == "--help" ]]; then + echo "-h, --help Show help menu" + echo "-t, --theme Show theme selection screen" fi fi