17 lines
425 B
Bash
17 lines
425 B
Bash
#!/bin/bash
|
|
|
|
version=1.8.2
|
|
|
|
install_packages firefox-esr '|' firefox https://github.com/browsh-org/browsh/releases/download/v${version}/browsh_${version}_linux_armv7.deb || exit 1
|
|
|
|
echo "[Desktop Entry]
|
|
Version=${version}
|
|
Type=Application
|
|
Name=Browsh
|
|
Comment=The modern text-based terminal browser.
|
|
Icon=$(dirname "$0")/icon-64.png
|
|
Exec=browsh
|
|
Terminal=true
|
|
Categories=Network;" > ~/.local/share/applications/browsh.desktop
|
|
|