Update install.sh

This commit is contained in:
RealStickman 2020-08-23 18:36:59 +00:00
parent c3ebf87aa9
commit 44e6d731f5

View File

@ -88,14 +88,7 @@ options=(1 "VirtManager" off # any option can be set to default to "on"
6 "Youtube-dl" off
7 "Discord" on
8 "Handbrake" off
9 "Gimp" off
10 "Audacity" off
11 "MangoHud" off
12 "Easystroke" on
13 "Liferea" off
14 "Mirage" on
15 "Bettergram" on
16 "Pycharm")
9 "Gimp" off)
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
#clear
for choice in $choices
@ -137,32 +130,48 @@ do
sudo pacman -S --needed gimp
echo Installed Gimp
;;
10)
esac
done
cmd=(dialog --separate-output --checklist "Select more programs:" 22 76 16)
options=(1 "Audacity" off
2 "MangoHud" off
3 "Easystroke" on
4 "Liferea" off
5 "Mirage" on
6 "Bettergram" on
7 "Pycharm")
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
#clear
for choice in $choices
do
case $choice in
1)
sudo pacman -S --needed audacity
echo Installed Audacity
;;
11)
2)
git clone --recurse-submodules https://github.com/flightlessmango/MangoHud.git
./MangoHud/build.sh install
echo Installed MangoHud
;;
12)
3)
sudo yay -S --needed easystroke
echo Installed Easystroke
;;
13)
4)
sudo yay -S --needed liferea
echo Installed Liferea
;;
14)
5)
sudo yay -S --needed matrix-mirage
echo Installed Mirage
;;
15)
6)
sudo yay -S --needed bettergram
echo Installed Bettergram
;;
16)
7)
sudo pacman -S --needed pycharm-community-edition
echo Installed Pycharm
;;