Update install.sh
This commit is contained in:
parent
c3ebf87aa9
commit
44e6d731f5
@ -88,14 +88,7 @@ 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
|
|
||||||
16 "Pycharm")
|
|
||||||
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
|
choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
|
||||||
#clear
|
#clear
|
||||||
for choice in $choices
|
for choice in $choices
|
||||||
@ -137,32 +130,48 @@ do
|
|||||||
sudo pacman -S --needed gimp
|
sudo pacman -S --needed gimp
|
||||||
echo Installed 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
|
sudo pacman -S --needed audacity
|
||||||
echo Installed Audacity
|
echo Installed Audacity
|
||||||
;;
|
;;
|
||||||
11)
|
2)
|
||||||
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
|
||||||
;;
|
;;
|
||||||
12)
|
3)
|
||||||
sudo yay -S --needed easystroke
|
sudo yay -S --needed easystroke
|
||||||
echo Installed Easystroke
|
echo Installed Easystroke
|
||||||
;;
|
;;
|
||||||
13)
|
4)
|
||||||
sudo yay -S --needed liferea
|
sudo yay -S --needed liferea
|
||||||
echo Installed Liferea
|
echo Installed Liferea
|
||||||
;;
|
;;
|
||||||
14)
|
5)
|
||||||
sudo yay -S --needed matrix-mirage
|
sudo yay -S --needed matrix-mirage
|
||||||
echo Installed Mirage
|
echo Installed Mirage
|
||||||
;;
|
;;
|
||||||
15)
|
6)
|
||||||
sudo yay -S --needed bettergram
|
sudo yay -S --needed bettergram
|
||||||
echo Installed Bettergram
|
echo Installed Bettergram
|
||||||
;;
|
;;
|
||||||
16)
|
7)
|
||||||
sudo pacman -S --needed pycharm-community-edition
|
sudo pacman -S --needed pycharm-community-edition
|
||||||
echo Installed Pycharm
|
echo Installed Pycharm
|
||||||
;;
|
;;
|
||||||
|
Loading…
Reference in New Issue
Block a user