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