You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			752 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			27 lines
		
	
	
		
			752 B
		
	
	
	
		
			Bash
		
	
#!/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
 | 
						|
}
 | 
						|
 | 
						|
# Get dependencies
 | 
						|
"${DIRECTORY}/pkg-install" "firefox-esr" "$(dirname "$0")" || exit 1
 | 
						|
 | 
						|
wget https://github.com/browsh-org/browsh/releases/download/v1.6.4/browsh_1.6.4_linux_arm64.deb || error 'Failed to download browsh!'
 | 
						|
sudo apt -yf install ./browsh_1.6.4_linux_arm64.deb || error 'Failed to install browsh!' 
 | 
						|
rm browsh_1.6.4_linux_arm64.deb
 | 
						|
echo "[Desktop Entry]
 | 
						|
Version=1.1
 | 
						|
Type=Application
 | 
						|
Name=Browsh
 | 
						|
Comment=The modern text-based terminal browser.
 | 
						|
Icon=$(dirname "$0")/icon-64.png
 | 
						|
Exec=browsh
 | 
						|
Terminal=true
 | 
						|
Actions=
 | 
						|
Categories=Network;" > ~/.local/share/applications/browsh.desktop
 | 
						|
 |