May have been pycharm that was causing issues

This commit is contained in:
RealStickman 2020-08-23 18:41:31 +00:00
parent 7f97088310
commit dc30726505

View File

@ -88,7 +88,13 @@ options=(1 "VirtManager" off # any option can be set to default to "on"
6 "Youtube-dl" off 6 "Youtube-dl" off
7 "Discord" on 7 "Discord" on
8 "Handbrake" off 8 "Handbrake" off
9 "Gimp" off) 9 "Gimp" off
10 "Audacity" off
11 "MangoHud" off
12 "Easystroke" on
13 "Liferea" off
14 "Mirage" on
15 "Bettergram" on)
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty) choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
#clear #clear
for choice in $choices for choice in $choices
@ -130,44 +136,28 @@ do
sudo pacman -S --needed gimp sudo pacman -S --needed gimp
echo Installed Gimp echo Installed Gimp
;; ;;
esac 10)
done
#this block does not show up
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)
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
#clear
for choice in $choices
do
case $choice in
1)
sudo pacman -S --needed audacity sudo pacman -S --needed audacity
echo Installed Audacity echo Installed Audacity
;; ;;
2) 11)
git clone --recurse-submodules https://github.com/flightlessmango/MangoHud.git git clone --recurse-submodules https://github.com/flightlessmango/MangoHud.git
./MangoHud/build.sh install ./MangoHud/build.sh install
echo Installed MangoHud echo Installed MangoHud
;; ;;
3) 12)
sudo yay -S --needed easystroke sudo yay -S --needed easystroke
echo Installed Easystroke echo Installed Easystroke
;; ;;
4) 13)
sudo yay -S --needed liferea sudo yay -S --needed liferea
echo Installed Liferea echo Installed Liferea
;; ;;
5) 14)
sudo yay -S --needed matrix-mirage sudo yay -S --needed matrix-mirage
echo Installed Mirage echo Installed Mirage
;; ;;
6) 15)
sudo yay -S --needed bettergram sudo yay -S --needed bettergram
echo Installed Bettergram echo Installed Bettergram
;; ;;