Add VSCodium app
parent
c844744741
commit
127858695e
@ -0,0 +1 @@
|
|||||||
|
added to pi-apps by @chunky-milk
|
@ -0,0 +1,2 @@
|
|||||||
|
Visual Studio Code builds without the telemetry and tracking.
|
||||||
|
Microsoft's vscode source code is open source (MIT-licensed), but the product available for download (Visual Studio Code) is licensed under this not-FLOSS license and contains telemetry/tracking.
|
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.0 KiB |
@ -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
|
||||||
|
}
|
||||||
|
|
||||||
|
wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg | gpg --dearmor | sudo dd of=/etc/apt/trusted.gpg.d/vscodium.gpg
|
||||||
|
echo 'deb https://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/debs/ vscodium main' | sudo tee --append /etc/apt/sources.list.d/vscodium.list
|
||||||
|
sudo apt update || error "Failed to run sudo apt update!"
|
||||||
|
sudo apt install codium -y || error "Failed to install codium package!"
|
@ -0,0 +1,12 @@
|
|||||||
|
#!/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 purge codium -y
|
||||||
|
sudo rm /etc/apt/trusted.gpg.d/vscodium.gpg
|
||||||
|
sudo rm /etc/apt/sources.list.d/vscodium.list
|
@ -0,0 +1 @@
|
|||||||
|
https://vscodium.com/
|
Loading…
Reference in New Issue