From 331ba7956b50066c44c21a5ac127692b4bb410b9 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Fri, 17 Jul 2020 09:30:11 +0000 Subject: [PATCH] Added Mirage --- arch-setup/install.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/arch-setup/install.sh b/arch-setup/install.sh index d346e98e..0f514a8e 100644 --- a/arch-setup/install.sh +++ b/arch-setup/install.sh @@ -92,7 +92,8 @@ options=(1 "VirtManager" off # any option can be set to default to "on" 10 "Audacity" off 11 "MangoHud" off 12 "Easystroke" on - 13 "Liferea" off) + 13 "Liferea" off + 14 "Mirage (Matrix Client)" on) choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty) clear for choice in $choices @@ -151,6 +152,10 @@ do sudo yay -S --needed liferea echo Installed Liferea ;; + 14) + sudo yay -S --needed matrix-mirage + echo Installed Mirage + ;; esac done