From 65240b46ff2d803f44a1740a6340fa60f140ca0b Mon Sep 17 00:00:00 2001 From: RealStickman Date: Sun, 21 Jun 2020 17:17:40 +0000 Subject: [PATCH] Update install.sh --- 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 6bc9a4d6..b1455394 100644 --- a/arch-setup/install.sh +++ b/arch-setup/install.sh @@ -86,7 +86,8 @@ options=(1 "VirtManager" off # any option can be set to default to "on" 9 "Gimp" off 10 "Audacity" off 11 "MangoHud" off - 12 "Easystroke" on) + 12 "Easystroke" on + 13 "Liferea" off) choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty) clear for choice in $choices @@ -141,6 +142,10 @@ do sudo yay -S --needed easystroke echo Installed Easystroke ;; + 13) + sudo yay -S --needed liferea + echo Installed Liferea + ;; esac done