From 30a7220877097f3ee93aa02435ba1802744fa1fb Mon Sep 17 00:00:00 2001 From: RealStickman Date: Thu, 30 Jul 2020 15:29:54 +0000 Subject: [PATCH] Added Pycharm --- 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 c97c2149..3a57706c 100644 --- a/arch-setup/install.sh +++ b/arch-setup/install.sh @@ -96,7 +96,8 @@ options=(1 "VirtManager" off # any option can be set to default to "on" 12 "Easystroke" on 13 "Liferea" off 14 "Mirage (Matrix Client)" on - 15 "Bettergram (Telegram Client)" on) + 15 "Bettergram (Telegram Client)" on + 16 "Pycharm") choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty) clear for choice in $choices @@ -163,6 +164,10 @@ do sudo yay -S --needed bettergram echo Installed Bettergram ;; + 16) + sudo pacman -S --needed pycharm-community-edition + echo Installed Pycharm + ;; esac done