40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
#!/bin/bash
|
|
set -e
|
|
mkdir -p /etc/apt//sources.list-available || exit
|
|
cat > /etc/apt/sources.list-available/waterfox.list << EOF
|
|
# curl https://bintray.com/user/downloadSubjectPublicKey\?username\=hawkeye116477 | sudo apt-key add -
|
|
deb https://dl.bintray.com/hawkeye116477/waterfox-deb release main
|
|
EOF
|
|
|
|
ln -sf /etc/apt/sources.list-available/waterfox.list /etc/apt/sources.list.d/waterfox.list
|
|
|
|
curl "https://bintray.com/user/downloadSubjectPublicKey\?username\=hawkeye116477" | sudo apt-key add -
|
|
|
|
apt-get update
|
|
|
|
apt-get install -y waterfox
|
|
|
|
# Themes
|
|
## Australis Dark - enabled in Firefox 53
|
|
## Has rounded corners on active tab and grey surround
|
|
# https://github.com/wilfredwee/australis-dark
|
|
# https://addons.mozilla.org/en-US/firefox/addon/devedition-theme-enabler/
|
|
#https://addons.mozilla.org/firefox/downloads/file/477584/developer_edition_theme_enabler-1.0.1-fx.xpi
|
|
|
|
## Aa Dark Background and light text
|
|
|
|
## ff2mpv
|
|
## Firebug - being retired
|
|
## firepath
|
|
## greasemonkey
|
|
## it's all text
|
|
## saved password editor
|
|
## text link
|
|
## try xpath
|
|
## ublock origin
|
|
## umatrix
|
|
## web developer
|
|
## xdebug helper
|
|
## xpath finder
|
|
## wideo blocker - doesn't seem to work
|