From 4fe2f351929131da6f07d1b3486649f6f983f7fc Mon Sep 17 00:00:00 2001 From: RealStickman Date: Mon, 15 Mar 2021 14:34:10 +0100 Subject: [PATCH] Change numbers. Add OneNote --- arch-setup/install.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/arch-setup/install.sh b/arch-setup/install.sh index 5ff69f6f..095d298d 100644 --- a/arch-setup/install.sh +++ b/arch-setup/install.sh @@ -194,22 +194,26 @@ done #in_slack=0 cmd=(dialog --separate-output --checklist "School and work communication" 22 76 16) -options=(1 "teams" off - 2 "slack" off) +options=(0 "Teams" off + 1 "Slack" off + 10 "OneNote" off) choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty) clear for choice in $choices do case $choice in - 1) + 0) #in_teams=1 echo "teams" >> "$setupdir/aurselectedpkgs.txt" ;; - 2) + 1) #in_slack=1 #echo "slack-desktop" >> "$setupdir/aurselectedpkgs.txt" echo "slack-electron" >> "$setupdir/aurselectedpkgs.txt" ;; + 10) + echo "p3x-onenote" >> "$setupdir/aurselectedpkgs.txt" + ;; esac done