License conkerorrc and add install-all script.

This commit is contained in:
Bradley M. Kuhn 2013-09-01 13:06:27 -04:00
parent 7f8051f6a0
commit 7bd999a9e7
2 changed files with 19 additions and 0 deletions

View file

@ -1,3 +1,19 @@
// conkerorrc -*- Javascript -*-
// Configuration for Conkeror web browser.
// To use as my configuration, I did the following command:
// ln -s conkerorrc $HOME/.conkerorrc
// Copyright © 2009, 2010, 2013, Bradley M. Kuhn
// The copyright holders wish that this document could be placed into the public
// domain. However, should such a public domain dedication not be possible, the
// copyright holders grant a waiver and/or license under the terms of CC0-1.0, as
// published by Creative Commons, Inc. A copy of CC0-1.0 can be found in the
// same repository as this README.md file under the filename CC0-1.0.txt. If
// this document has been separated from the repository, a copy of CC0-1.0 can
// be found on Creative Commons' website at:
// http://creativecommons.org/publicdomain/zero/1.0/legalcode).
session_pref("xpinstall.whitelist.required", false);
define_key(default_global_keymap, "C-o", "cmd_scrollPageUp");
define_key(default_base_keymap, "C-o", "cmd_scrollPageUp");

3
install-all.sh Executable file
View file

@ -0,0 +1,3 @@
#!/bin/sh
/bin/ln -sf conkerorrc $HOME/.conkerorrc