From 1ca10664fbac7050271c99e19772e6582e2bfb93 Mon Sep 17 00:00:00 2001 From: "jakob.stendahl" Date: Thu, 11 Apr 2024 18:19:51 +0200 Subject: Mycli --- configure | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'configure') diff --git a/configure b/configure index 9e13757..1dbce58 100755 --- a/configure +++ b/configure @@ -46,6 +46,7 @@ fi : "${DT_HOMEBIN:=no}" : "${DT_TMUX:=yes}" : "${DT_HELIX:=no}" +: "${DT_MYCLI:=no}" radiolist_on() { local value="$1" @@ -166,6 +167,7 @@ FEATURES="$(dialog --stdout \ 11 "Bash" $(checklist_on "${DT_BASH}") \ 12 "home folder bin dir" $(checklist_on "${DT_HOMEBIN}") \ 13 "tmux" $(checklist_on "${DT_NEOVIM}") \ + 15 "MyCLI" $(checklist_on "${DT_MYCLI}") \ 14 "Helix" $(checklist_on "${DT_HELIX}"))" if [ "$?" -eq 1 ]; then exit 0; fi @@ -183,6 +185,7 @@ DT_BASH=no DT_HOMEBIN=no DT_TMUX=no DT_HELIX=no +DT_MYCLI=no for choice in ${FEATURES}; do case $choice in @@ -200,6 +203,7 @@ for choice in ${FEATURES}; do 12) DT_HOMEBIN=yes;; 13) DT_TMUX=yes;; 14) DT_HELIX=yes;; + 15) DT_MYCLI=yes;; esac done -- cgit v1.2.3