From 973afbcec98d92adcbac60b166a44547b5efa587 Mon Sep 17 00:00:00 2001 From: Ryan Roden-Corrent Date: Sat, 2 Apr 2016 08:10:47 -0400 Subject: [PATCH] Add note about redirecting config for testing. New contributors might like to be reminded to redirect the config access of their locally-built qutebrowser to avoid overwriting their global settings. --- INSTALL.asciidoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/INSTALL.asciidoc b/INSTALL.asciidoc index 1e1d0afd5..241f14f8d 100644 --- a/INSTALL.asciidoc +++ b/INSTALL.asciidoc @@ -266,6 +266,14 @@ your `$PATH` (e.g. `/usr/local/bin/qutebrowser` or `~/bin/qutebrowser`): ~/path/to/qutebrowser/.venv/bin/python3 -m qutebrowser "$@" ---- +If you are developing on qutebrowser, you may want to redirect it to a local +config: + +---- +#!/bin/bash +~/path/to/qutebrowser/.venv/bin/python3 -m qutebrowser -c .qutebrowser-local "$@" +---- + Updating ~~~~~~~~