forked from thisiszeev/wine-installer
Changes to be committed:
modified: README.md modified: wine-installer-ubuntu.sh new file: wine-script-updater.sh
This commit is contained in:
parent
e360e87fa1
commit
e24f707204
|
@ -13,5 +13,4 @@ sudo apt install wget
|
||||||
wget https://raw.githubusercontent.com/RishonDev/get-wine-latest.sh/main/wine-installer-ubuntu.sh
|
wget https://raw.githubusercontent.com/RishonDev/get-wine-latest.sh/main/wine-installer-ubuntu.sh
|
||||||
chmod +x wine-installer-ubuntu.sh
|
chmod +x wine-installer-ubuntu.sh
|
||||||
./wine-installer-ubuntu.sh
|
./wine-installer-ubuntu.sh
|
||||||
```
|
```
|
||||||
|
|
|
@ -1,4 +1,16 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
while getopts ":v:" opt; do
|
||||||
|
case $opt in
|
||||||
|
v)
|
||||||
|
echo "2.1.0"
|
||||||
|
;;
|
||||||
|
\?)
|
||||||
|
echo "Invalid option: -$OPTARG" >&2
|
||||||
|
echo "-v Displays the version"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
RELEASE=$(lsb_release -sr)
|
RELEASE=$(lsb_release -sr)
|
||||||
spin()
|
spin()
|
||||||
|
@ -21,7 +33,7 @@ touch ./logs/repoLog.txt
|
||||||
touch ./logs/repoLog2.txt
|
touch ./logs/repoLog2.txt
|
||||||
touch ./logs/installLog.txt
|
touch ./logs/installLog.txt
|
||||||
touch ./logs/configLog.txt
|
touch ./logs/configLog.txt
|
||||||
echo "Enabling 32-bit support..."
|
echo "Enabling 32-bit support... "
|
||||||
spin &
|
spin &
|
||||||
SPIN_PID=$!
|
SPIN_PID=$!
|
||||||
trap "kill -9 $SPIN_PID" `seq 0 15`
|
trap "kill -9 $SPIN_PID" `seq 0 15`
|
||||||
|
@ -29,7 +41,7 @@ sudo dpkg --add-architecture i386
|
||||||
kill -9 $SPIN_PID
|
kill -9 $SPIN_PID
|
||||||
|
|
||||||
|
|
||||||
echo "Adding the repositories..."
|
echo "Adding the repositories... "
|
||||||
spin &
|
spin &
|
||||||
SPIN_PID=$!
|
SPIN_PID=$!
|
||||||
trap "kill -9 $SPIN_PID" `seq 0 15`
|
trap "kill -9 $SPIN_PID" `seq 0 15`
|
||||||
|
@ -57,9 +69,10 @@ fi
|
||||||
} &> ./logs/repoLog.txt
|
} &> ./logs/repoLog.txt
|
||||||
kill -9 $SPIN_PID
|
kill -9 $SPIN_PID
|
||||||
|
|
||||||
read -p "Install wine? [Y/n]:" -n 1 -r
|
read -p "Install wine? [Y/n]: " -n 1 -r
|
||||||
if [[ $REPLY =~ ^[Yy]$ ]]
|
if [[ $REPLY =~ ^[Yy]$ ]]
|
||||||
then
|
then
|
||||||
|
echo
|
||||||
spin &
|
spin &
|
||||||
SPIN_PID=$!
|
SPIN_PID=$!
|
||||||
trap "kill -9 $SPIN_PID" `seq 0 15`
|
trap "kill -9 $SPIN_PID" `seq 0 15`
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
#!/bin/bash
|
||||||
|
spin()
|
||||||
|
{
|
||||||
|
spinner="/|\\-/|\\-"
|
||||||
|
while :
|
||||||
|
do
|
||||||
|
for i in `seq 0 7`
|
||||||
|
do
|
||||||
|
echo -n "${spinner:$i:1}"
|
||||||
|
echo -en "\010"
|
||||||
|
sleep 0.1
|
||||||
|
done
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
echo "Updating script..."
|
||||||
|
spin &
|
||||||
|
SPIN_PID=$!
|
||||||
|
trap "kill -9 $SPIN_PID" `seq 0 15`
|
||||||
|
wget https://raw.githubusercontent.com/RishonDev/get-wine-latest.sh/v2.1.0/wine-installer-ubuntu.sh -O ./wine-installer-ubuntu.sh
|
||||||
|
kill -9 $SPIN_PID
|
||||||
|
echo "Done."
|
Loading…
Reference in New Issue