Add Turbo Scratch app
parent
28763fc9e6
commit
4731804d22
@ -0,0 +1,3 @@
|
||||
App added to pi-apps by [Raspberry Pi News](bit.ly/rpnsite)
|
||||
|
||||
Made by the [TurboWarp dev team](https://github.com/TurboWarp/)
|
@ -0,0 +1,4 @@
|
||||
Scratch 3 Desktop, but runs much faster. Also known as 'TurboWarp'
|
||||
TurboWarp is a Scratch mod that compiles projects to JavaScript to make them run really fast. Also has dark mode, addons, and more. It even works when you're offline, just like the original Scratch Desktop.
|
||||
|
||||
To run: Menu -> Programming -> TurboWarp
|
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.3 KiB |
@ -0,0 +1,18 @@
|
||||
#!/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
|
||||
}
|
||||
|
||||
rm -f ~/turbowarp.deb
|
||||
wget -O ~/turbowarp.deb https://github.com/TurboWarp/desktop/releases/download/v0.3.1/TurboWarp-linux-armv7l-0.3.1.deb || error "Failed to download deb!"
|
||||
|
||||
sudo apt install -yf ~/turbowarp.deb || error "Failed to install turbowarp.deb!"
|
||||
|
||||
rm -f ~/turbowarp.deb
|
||||
|
||||
#Move TurboWarp desktop file from Education category to Programming category
|
||||
sed -i 's/Categories=Education;/Categories=Application;Development;/g' /usr/share/applications/turbowarp-desktop.desktop
|
@ -0,0 +1,19 @@
|
||||
#!/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
|
||||
}
|
||||
|
||||
rm -f ~/turbowarp.deb
|
||||
wget -O ~/turbowarp.deb https://github.com/TurboWarp/desktop/releases/download/v0.3.1/TurboWarp-linux-arm64-0.3.1.deb || error "Failed to download deb!"
|
||||
|
||||
sudo apt install -yf ~/turbowarp.deb || error "Failed to install turbowarp.deb!"
|
||||
|
||||
rm -f ~/turbowarp.deb
|
||||
|
||||
#Move TurboWarp desktop file from Education category to Programming category
|
||||
sed -i 's/Categories=Education;/Categories=Application;Development;/g' /usr/share/applications/turbowarp-desktop.desktop
|
||||
|
@ -0,0 +1,10 @@
|
||||
#!/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
|
||||
}
|
||||
|
||||
sudo apt remove -y turbowarp-desktop || error "apt failed to purge turbowarp-desktop"
|
@ -0,0 +1 @@
|
||||
turbowarp.org
|
Loading…
Reference in New Issue