mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 21:57:59 +01:00
14 lines
630 B
XML
14 lines
630 B
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
<script type="application/javascript;version=1.8">
|
|
let uri = Components.classes["@mozilla.org/network/io-service;1"]
|
|
.getService(Components.interfaces.nsIIOService)
|
|
.newURI("dactyl://help/options", null, null);
|
|
Application.activeWindow.open(uri).focus(); // TODO: generalise for Teledactyl et al.
|
|
window.close();
|
|
</script>
|
|
</window>
|
|
|
|
<!-- vim: set fdm=marker sw=4 ts=4 et: -->
|