Add Vivaldi browser app
parent
481afd63a4
commit
581e3d2407
@ -0,0 +1,4 @@
|
|||||||
|
Big thanks to chunky-milk for app idea and install script:
|
||||||
|
https://github.com/chunky-milk/pi-bashscripts-files/tree/main/vivaldi
|
||||||
|
|
||||||
|
Icon, description, and everything else required by pi-apps by Itai-Nelken
|
@ -0,0 +1,3 @@
|
|||||||
|
Fast. private browser with unique features.
|
||||||
|
|
||||||
|
official vivaldi browser for arm linux.
|
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
@ -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
|
||||||
|
}
|
||||||
|
|
||||||
|
wget https://vivaldi.com/download/vivaldi-stable_armhf.deb -O ~/vivaldi_armhf.deb || error 'Failed to download vivaldi!'
|
||||||
|
sudo apt install --fix-missing -y ~/vivaldi_armhf.deb || error 'Failed to install vivaldi!'
|
||||||
|
rm ~/vivaldi_armhf.deb
|
@ -0,0 +1,11 @@
|
|||||||
|
#!/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 vivaldi-stable -y
|
||||||
|
sudo apt autoremove -y
|
@ -0,0 +1 @@
|
|||||||
|
https://vivaldi.com
|
Loading…
Reference in New Issue