Add help menu

This commit is contained in:
RealStickman 2021-03-08 09:10:05 +01:00
parent b3d66baa6c
commit 18d4948a12

View File

@ -57,6 +57,9 @@ if [[ "$#" -eq 1 ]]; then
# -t/--theme to change theme # -t/--theme to change theme
if [[ "$1" == "-t" || "$1" == "--theme" ]]; then if [[ "$1" == "-t" || "$1" == "--theme" ]]; then
func_seltheme func_seltheme
elif [[ "$1" == "-h" || "$1" == "--help" ]]; then
echo "-h, --help Show help menu"
echo "-t, --theme Show theme selection screen"
fi fi
fi fi