From 20de4515158e99ead79471ff9780ef6b87c8ed68 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Wed, 23 Jan 2019 01:48:04 -0500 Subject: [PATCH] add linux config example --- archivebox/config.py | 3 ++- etc/ArchiveBox.conf.default | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/archivebox/config.py b/archivebox/config.py index 122c7e8d..660da49e 100644 --- a/archivebox/config.py +++ b/archivebox/config.py @@ -60,10 +60,11 @@ if not CHROME_BINARY: 'chromium-browser', 'chromium', 'google-chrome', + 'google-chrome-stable', + 'google-chrome-unstable', 'google-chrome-beta', 'google-chrome-canary', 'google-chrome-dev', - 'google-chrome-unstable', ) for name in common_chrome_executable_names: full_path_exists = shutil.which(name) diff --git a/etc/ArchiveBox.conf.default b/etc/ArchiveBox.conf.default index fc07363e..08fcbe1c 100644 --- a/etc/ArchiveBox.conf.default +++ b/etc/ArchiveBox.conf.default @@ -34,8 +34,9 @@ ### To lie and pretend to be Google Chrome when archiving, uncomment this line: # WGET_USER_AGENT="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" -### To share a chrome data directory with your main browser, uncomment this line: +### To share a chrome data directory with your main browser, uncomment one of these lines: # CHROME_USER_DATA_DIR="~/Library/Application Support/Google/Chrome/Default" +# CHROME_USER_DATA_DIR="~/.config/google-chrome/Default" ### To use a custom chrome binary, uncomment and set to binary name or full path: # CHROME_BINARY="chromium-browser"