47 lines
1.5 KiB
Bash
47 lines
1.5 KiB
Bash
#!/bin/bash
|
|
set -e
|
|
mkdir -p /etc/apt//sources.list-available || exit
|
|
cat > /etc/apt/sources.list-available/waterfox.list << EOF
|
|
# wget -nv https://download.opensuse.org/repositories/home:hawkeye116477:waterfox/Debian_Testing/Release.key -O Release.key
|
|
# apt-key add - < Release.key
|
|
deb http://download.opensuse.org/repositories/home:/hawkeye116477:/waterfox/Debian_Testing/ /
|
|
EOF
|
|
|
|
# The dl-bintray repo doesn't play nice with apt-proxy
|
|
#echo "Acquire::http::Proxy { dl.bintray.com DIRECT; };" >> /etc/apt/apt.conf.d/02proxy
|
|
|
|
ln -sf /etc/apt/sources.list-available/waterfox.list /etc/apt/sources.list.d/waterfox.list
|
|
|
|
wget -nv https://download.opensuse.org/repositories/home:hawkeye116477:waterfox/Debian_Testing/Release.key -O Release.key
|
|
apt-key add - < Release.key
|
|
|
|
apt-get update
|
|
|
|
apt-get install -y waterfox
|
|
|
|
update-alternatives --install /usr/bin/x-www-browser x-www-browser /usr/bin/waterfox 201
|
|
|
|
# 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
|