aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md43
1 files changed, 3 insertions, 40 deletions
diff --git a/README.md b/README.md
index 6f7082c..ca4e514 100644
--- a/README.md
+++ b/README.md
@@ -44,43 +44,6 @@ https://ipmi.foo.example.org
https://ipmi.bar.example.org
```
-There's probably some way to preset Waterfox's MIME handler for `jnlp`
-files to run `/usr/bin/javaws` but after working out all of the above
-I lack the patience to dig further today.
-
-Yeah, there's a way, and it's disgusting: pre-populate the Waterfox
-config tree, then overwrite or edit `handlers.json`. Something like
-this would work for the pre-population step:
-
-```
-waterfox --headless & waterfox=$!
-sleep 2
-kill -HUP $waterfox
-```
-
-Then either blindly `cp` or use a small Python script to edit the
-JSON. The snippet we want to add is:
-
-```
- "application/x-java-jnlp-file": {
- "action": 2,
- "extensions": [
- "jnlp"
- ],
- "handlers": [
- {
- "name": "javaws",
- "path": "/usr/bin/javaws"
- }
- ]
- }
-```
-
-as another entry in the `mimeTypes` section.
-
-```
->>> import json
->>> handlers = json.load(open("handlers.json"))
->>> handlers["mimeTypes"]["application/x-java-jnlp-file"]
-{u'action': 2, u'extensions': [u'jnlp'], u'handlers': [{u'path': u'/usr/bin/javaws', u'name': u'javaws'}]}
-```
+The hack for preconfiguring Waterfox's MIME handler to run
+`/usr/bin/javaws` for `jnlp` files is particularly disgusting, but
+none of the rest of this is particularly nice either. Whatever.