-
Notifications
You must be signed in to change notification settings - Fork 569
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow google-chrome access to the custom flags files in ~/.config. #3418
Changes from all commits
985689d
69ab58c
bf5265b
e1a413d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,16 @@ include globals.local | |
noblacklist ${HOME}/.cache/google-chrome-beta | ||
noblacklist ${HOME}/.config/google-chrome-beta | ||
|
||
noblacklist ${HOME}/.config/chrome-beta-flags.conf | ||
noblacklist ${HOME}/.config/chrome-beta-flags.config | ||
|
||
mkdir ${HOME}/.cache/google-chrome-beta | ||
mkdir ${HOME}/.config/google-chrome-beta | ||
whitelist ${HOME}/.cache/google-chrome-beta | ||
whitelist ${HOME}/.config/google-chrome-beta | ||
|
||
whitelist ${HOME}/.config/chrome-beta-flags.conf | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same remarks as above. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've tested the profiles as they are now and google-chrome-beta does seem to look for |
||
whitelist ${HOME}/.config/chrome-beta-flags.config | ||
|
||
# Redirect | ||
include chromium-common.profile |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,16 @@ include globals.local | |
noblacklist ${HOME}/.cache/google-chrome-unstable | ||
noblacklist ${HOME}/.config/google-chrome-unstable | ||
|
||
noblacklist ${HOME}/.config/chrome-unstable-flags.conf | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same remarks as above. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've tested the profiles as they are now and google-chrome-unstable does seem to look for |
||
noblacklist ${HOME}/.config/chrome-unstable-flags.config | ||
|
||
mkdir ${HOME}/.cache/google-chrome-unstable | ||
mkdir ${HOME}/.config/google-chrome-unstable | ||
whitelist ${HOME}/.cache/google-chrome-unstable | ||
whitelist ${HOME}/.config/google-chrome-unstable | ||
|
||
whitelist ${HOME}/.config/chrome-unstable-flags.conf | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same remarks as above. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've tested the profiles as they are now and google-chrome-unstable does seem to look for |
||
whitelist ${HOME}/.config/chrome-unstable-flags.config | ||
|
||
# Redirect | ||
include chromium-common.profile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should keep the file names of the flags configuration cfr. what you used in google-chrome.profile. I'm pretty sure the beta version will otherwise not be able to find those (even when they exist). So just drop the '-beta' part. Same goes for the whitelists and the unstable profile. I'll mark those as well, just so you know where to edit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've tested the profiles as they are now and google-chrome-beta does seem to look for
chrome-beta-flags.conf / chrome-beta-flags.config
.