Look for extensions in $CHROMIUM_EXTENSION_DIRECTORY instead of /usr/share/chromium/extensions. --- a/chrome/common/chrome_paths.cc +++ b/chrome/common/chrome_paths.cc @@ -4,6 +4,7 @@ #include "chrome/common/chrome_paths.h" +#include "base/environment.h" #include "base/files/file_util.h" #include "base/logging.h" #include "base/native_library.h" @@ -511,7 +512,13 @@ #endif #if defined(OS_LINUX) || defined(OS_CHROMEOS) case chrome::DIR_STANDALONE_EXTERNAL_EXTENSIONS: { - cur = base::FilePath(kFilepathSinglePrefExtensions); + std::unique_ptr environment(base::Environment::Create()); + std::string extension_dir; + if (environment->GetVar("CHROMIUM_EXTENSION_DIRECTORY", &extension_dir)) { + cur = base::FilePath(extension_dir); + } else { + cur = base::FilePath(kFilepathSinglePrefExtensions); + } break; } #endif 's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer/newt/keymap.scm
AgeCommit message (Expand)Author
2021-01-12installer: Fix crash in parameters menu....Mathieu Othacehe
2020-04-09installer: Include empty variant in keyboard layout selection....Florian Pelz
2020-04-09installer: Allow Alt+Shift toggle from non-Latin keyboard layouts....Florian Pelz
2020-04-08installer: Turn help menu into parameters menu....Mathieu Othacehe
2020-04-06installer: Add a help page....Mathieu Othacehe