nixpkgs/gui/defaults/preferences/myviewer-prefs.js
Nicolas Pierron 5bf3abba14 Add the base of a highly experimental gui for NixOS.
svn path=/nixos/trunk/; revision=17455
2009-09-26 23:15:19 +00:00

12 lines
643 B
JavaScript

pref("toolkit.defaultChromeURI", "chrome://nixos-gui/content/myviewer.xul");
pref("general.useragent.extra.myviewer", "NixOS gui/0.0");
/* debugging prefs */
pref("browser.dom.window.dump.enabled", true); // enable output to stderr
pref("javascript.options.showInConsole", true); // show javascript errors from chrome: files in the jsconsole
pref("javascript.options.strict", true); // show javascript strict warnings in the jsconsole
/* disable xul cache so that modifications to chrome: files apply without restarting xulrunner */
pref("nglayout.debug.disable_xul_cache", true);
pref("nglayout.debug.disable_xul_fastload", true);