removed combined install scripts to 64 & 32
							parent
							
								
									61a7bfc973
								
							
						
					
					
						commit
						212ef696c5
					
				@ -1,31 +0,0 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
 | 
			
		||||
 | 
			
		||||
function error {
 | 
			
		||||
  echo -e "\\e[91m$1\\e[39m"
 | 
			
		||||
  exit 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
arch=''
 | 
			
		||||
 | 
			
		||||
while [ "$arch" != 'armhf' ] && [ "$arch" != 'arm64' ]
 | 
			
		||||
do
 | 
			
		||||
  echo -n "Which version of Boxy SVG do you want? [armhf/arm64] "
 | 
			
		||||
  arch=''
 | 
			
		||||
  read arch
 | 
			
		||||
  if [ "$arch" != 'armhf' ] && [ "$arch" != 'arm64' ];then
 | 
			
		||||
    echo -e "\\e[91mDid not understand '$arch'. Try again.\\e[39m"
 | 
			
		||||
  fi
 | 
			
		||||
done
 | 
			
		||||
 | 
			
		||||
git clone https://github.com/Botspot/Boxy-SVG-RPi || error 'Failed to clone repository!'
 | 
			
		||||
 | 
			
		||||
if [ "$arch" == 'armhf' ];then
 | 
			
		||||
  tar -xf ~/Boxy-SVG-RPi/BoxySVG-linux-armv7l.tar.xz || error 'Failed to extract!'
 | 
			
		||||
  cp ~/Boxy-SVG-RPi/boxy-svg-armv7l.desktop ~/.local/share/applications
 | 
			
		||||
elif [ "$arch" == 'arm64' ];then
 | 
			
		||||
  tar -xf ~/Boxy-SVG-RPi/BoxySVG-linux-arm64.tar.xz || error 'Failed to extract!'
 | 
			
		||||
  cp ~/Boxy-SVG-RPi/boxy-svg-arm64.desktop ~/.local/share/applications
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
@ -0,0 +1,13 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
 | 
			
		||||
 | 
			
		||||
function error {
 | 
			
		||||
  echo -e "\\e[91m$1\\e[39m"
 | 
			
		||||
  exit 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
git clone https://github.com/Botspot/Boxy-SVG-RPi || error 'Failed to clone repository!'
 | 
			
		||||
 | 
			
		||||
tar -xf ~/Boxy-SVG-RPi/BoxySVG-linux-armv7l.tar.xz || error 'Failed to extract!'
 | 
			
		||||
cp ~/Boxy-SVG-RPi/boxy-svg-armv7l.desktop ~/.local/share/applications
 | 
			
		||||
@ -0,0 +1,13 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
 | 
			
		||||
 | 
			
		||||
function error {
 | 
			
		||||
  echo -e "\\e[91m$1\\e[39m"
 | 
			
		||||
  exit 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
git clone https://github.com/Botspot/Boxy-SVG-RPi || error 'Failed to clone repository!'
 | 
			
		||||
 | 
			
		||||
tar -xf ~/Boxy-SVG-RPi/BoxySVG-linux-arm64.tar.xz || error 'Failed to extract!'
 | 
			
		||||
cp ~/Boxy-SVG-RPi/boxy-svg-arm64.desktop ~/.local/share/applications
 | 
			
		||||
@ -1,54 +0,0 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
 | 
			
		||||
 | 
			
		||||
function error {
 | 
			
		||||
  echo -e "\\e[91m$1\\e[39m"
 | 
			
		||||
  exit 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
arch=''
 | 
			
		||||
while [ "$arch" != 'armhf' ] && [ "$arch" != 'arm64' ]
 | 
			
		||||
do
 | 
			
		||||
  echo -n "Which type of Discord do you want? [armhf/arm64] "
 | 
			
		||||
  arch=''
 | 
			
		||||
  read arch
 | 
			
		||||
  if [ "$arch" != 'armhf' ] && [ "$arch" != 'arm64' ];then
 | 
			
		||||
    echo -e "\\e[91mDid not understand '$arch'. Try again.\\e[39m"
 | 
			
		||||
  fi
 | 
			
		||||
done
 | 
			
		||||
 | 
			
		||||
#maker and enter discord-electron folder
 | 
			
		||||
gio trash ~/discord-electron
 | 
			
		||||
mkdir ~/discord-electron
 | 
			
		||||
cd ~/discord-electron || error "Failed to enter discord-electron folder!"
 | 
			
		||||
 | 
			
		||||
if [ "$arch" == 'armhf' ];then
 | 
			
		||||
  #Download from github
 | 
			
		||||
  wget https://github.com/SpacingBat3/electron-discord-webapp/releases/download/v0.1.1/linux-armv7l.tar.gz || error 'Failed to download archive!'
 | 
			
		||||
  
 | 
			
		||||
  tar -xf linux-armv7l.tar.gz --strip 1 || error 'Failed to extract archive!'
 | 
			
		||||
  rm -f linux-armv7l.tar.gz
 | 
			
		||||
elif [ "$arch" == 'arm64' ];then
 | 
			
		||||
  #Download from github
 | 
			
		||||
  wget https://github.com/SpacingBat3/electron-discord-webapp/releases/download/v0.1.1/linux-aarch64.tar.gz || error 'Failed to download archive!'
 | 
			
		||||
  
 | 
			
		||||
  tar -xf linux-aarch64.tar.gz --strip 1 || error 'Failed to extract archive!'
 | 
			
		||||
  rm -f linux-aarch64.tar.gz
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
cd $HOME
 | 
			
		||||
 | 
			
		||||
#Create desktop shortcut
 | 
			
		||||
echo "[Desktop Entry]
 | 
			
		||||
StartupNotify=true
 | 
			
		||||
Terminal=false
 | 
			
		||||
Type=Application
 | 
			
		||||
Name=Discord
 | 
			
		||||
Path=$HOME/discord-electron
 | 
			
		||||
Exec=$HOME/discord-electron/discord
 | 
			
		||||
Icon=/home/pi/pi-apps/apps/Discord/icon-64.png
 | 
			
		||||
Categories=Network;Chat;VideoConference;WebApp;Internet
 | 
			
		||||
Comment=Your place to talk!
 | 
			
		||||
GenericName=Network Messenger" > ~/.local/share/applications/discord.desktop
 | 
			
		||||
 | 
			
		||||
@ -0,0 +1,35 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
 | 
			
		||||
 | 
			
		||||
function error {
 | 
			
		||||
  echo -e "\\e[91m$1\\e[39m"
 | 
			
		||||
  exit 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#make and enter discord-electron folder
 | 
			
		||||
gio trash ~/discord-electron
 | 
			
		||||
mkdir ~/discord-electron
 | 
			
		||||
cd ~/discord-electron || error "Failed to enter discord-electron folder!"
 | 
			
		||||
 | 
			
		||||
#Download from github
 | 
			
		||||
wget https://github.com/SpacingBat3/electron-discord-webapp/releases/download/v0.1.1/linux-armv7l.tar.gz || error 'Failed to download archive!'
 | 
			
		||||
 | 
			
		||||
tar -xf linux-armv7l.tar.gz --strip 1 || error 'Failed to extract archive!'
 | 
			
		||||
rm -f linux-armv7l.tar.gz
 | 
			
		||||
 | 
			
		||||
cd $HOME
 | 
			
		||||
 | 
			
		||||
#Create desktop shortcut
 | 
			
		||||
echo "[Desktop Entry]
 | 
			
		||||
StartupNotify=true
 | 
			
		||||
Terminal=false
 | 
			
		||||
Type=Application
 | 
			
		||||
Name=Discord
 | 
			
		||||
Path=$HOME/discord-electron
 | 
			
		||||
Exec=$HOME/discord-electron/discord
 | 
			
		||||
Icon=/home/pi/pi-apps/apps/Discord/icon-64.png
 | 
			
		||||
Categories=Network;Chat;VideoConference;WebApp;Internet
 | 
			
		||||
Comment=Your place to talk!
 | 
			
		||||
GenericName=Network Messenger" > ~/.local/share/applications/discord.desktop
 | 
			
		||||
 | 
			
		||||
@ -0,0 +1,35 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
 | 
			
		||||
 | 
			
		||||
function error {
 | 
			
		||||
  echo -e "\\e[91m$1\\e[39m"
 | 
			
		||||
  exit 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#make and enter discord-electron folder
 | 
			
		||||
gio trash ~/discord-electron
 | 
			
		||||
mkdir ~/discord-electron
 | 
			
		||||
cd ~/discord-electron || error "Failed to enter discord-electron folder!"
 | 
			
		||||
 | 
			
		||||
#Download from github
 | 
			
		||||
wget https://github.com/SpacingBat3/electron-discord-webapp/releases/download/v0.1.1/linux-aarch64.tar.gz || error 'Failed to download archive!'
 | 
			
		||||
 | 
			
		||||
tar -xf linux-aarch64.tar.gz --strip 1 || error 'Failed to extract archive!'
 | 
			
		||||
rm -f linux-aarch64.tar.gz
 | 
			
		||||
 | 
			
		||||
cd $HOME
 | 
			
		||||
 | 
			
		||||
#Create desktop shortcut
 | 
			
		||||
echo "[Desktop Entry]
 | 
			
		||||
StartupNotify=true
 | 
			
		||||
Terminal=false
 | 
			
		||||
Type=Application
 | 
			
		||||
Name=Discord
 | 
			
		||||
Path=$HOME/discord-electron
 | 
			
		||||
Exec=$HOME/discord-electron/discord
 | 
			
		||||
Icon=/home/pi/pi-apps/apps/Discord/icon-64.png
 | 
			
		||||
Categories=Network;Chat;VideoConference;WebApp;Internet
 | 
			
		||||
Comment=Your place to talk!
 | 
			
		||||
GenericName=Network Messenger" > ~/.local/share/applications/discord.desktop
 | 
			
		||||
 | 
			
		||||
@ -1,35 +0,0 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
 | 
			
		||||
 | 
			
		||||
function error {
 | 
			
		||||
  echo -e "\\e[91m$1\\e[39m"
 | 
			
		||||
  exit 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
cd ~/Downloads
 | 
			
		||||
 | 
			
		||||
arch=''
 | 
			
		||||
 | 
			
		||||
while [ "$arch" != 'armhf' ] && [ "$arch" != 'arm64' ]
 | 
			
		||||
do
 | 
			
		||||
  echo -n "Which type of Visual Studio Code do you want? [armhf/arm64] "
 | 
			
		||||
  arch=''
 | 
			
		||||
  read arch
 | 
			
		||||
  if [ "$arch" != 'armhf' ] && [ "$arch" != 'arm64' ];then
 | 
			
		||||
    echo -e "\\e[91mDid not understand '$arch'. Try again.\\e[39m"
 | 
			
		||||
  fi
 | 
			
		||||
done
 | 
			
		||||
 | 
			
		||||
if [ "$arch" == 'armhf' ];then
 | 
			
		||||
  wget https://aka.ms/linux-armhf-deb || error 'Failed to download linux-armhf-deb!'
 | 
			
		||||
  sudo dpkg -i linux-armhf-deb || error 'Failed to install linux-armhf-deb!'
 | 
			
		||||
  rm -f linux-armhf-deb
 | 
			
		||||
  cd 
 | 
			
		||||
elif [ "$arch" == 'arm64' ];then
 | 
			
		||||
  wget https://aka.ms/linux-arm64-deb || error 'Failed to download linux-arm64-deb!'
 | 
			
		||||
  sudo dpkg -i linux-arm64-deb || error 'Failed to install linux-arm64-deb!'
 | 
			
		||||
  rm -f linux-arm64-deb
 | 
			
		||||
  cd
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
@ -0,0 +1,15 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
 | 
			
		||||
 | 
			
		||||
function error {
 | 
			
		||||
  echo -e "\\e[91m$1\\e[39m"
 | 
			
		||||
  exit 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
cd ~/Downloads
 | 
			
		||||
 | 
			
		||||
wget https://aka.ms/linux-armhf-deb || error 'Failed to download linux-armhf-deb!'
 | 
			
		||||
sudo dpkg -i linux-armhf-deb || error 'Failed to install linux-armhf-deb!'
 | 
			
		||||
rm -f linux-armhf-deb
 | 
			
		||||
cd
 | 
			
		||||
@ -0,0 +1,15 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
 | 
			
		||||
 | 
			
		||||
function error {
 | 
			
		||||
  echo -e "\\e[91m$1\\e[39m"
 | 
			
		||||
  exit 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
cd ~/Downloads
 | 
			
		||||
 | 
			
		||||
wget https://aka.ms/linux-arm64-deb || error 'Failed to download linux-arm64-deb!'
 | 
			
		||||
sudo dpkg -i linux-arm64-deb || error 'Failed to install linux-arm64-deb!'
 | 
			
		||||
rm -f linux-arm64-deb
 | 
			
		||||
cd
 | 
			
		||||
					Loading…
					
					
				
		Reference in New Issue