Brave: Difference between revisions
No edit summary |
|||
(9 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== Configure == | == Configure == | ||
=== Settings === | |||
Immediately change these Settings on any new profile: | |||
* Get started > Profile name and icon > customize it! | |||
* Get started > New Tab Page > shows > Homepage | |||
* Appearance > Toolbar > Show home button ON, set to bitpost.com | |||
* Appearance > Toolbar > Brave Rewards, Brave Wallet, Sidebar > OFF | |||
* Appearance > Toolbar > Show wide address bar, show full urls > ON | |||
* Appearance > Sidebar > Show: never | |||
* (NO) Appearance > Content > (very bottom) Cycle through the most recently used tabs with Ctrl-Tab | |||
* Sync > I have a chain > paste, toggle Sync everything ON | |||
TODO: consider playing with vertical tabs! It's a mindfuck tho... | |||
=== Profiles === | === Profiles === | ||
Profiles in Brave are AWESOME | Profiles in Brave are AWESOME: | ||
* Brave seems to remember what desktop the windows were on!!! | * Brave seems to remember what desktop the windows were on!!! FINALLY | ||
* For each profile, you get a name and customizable icon in the top-right of the toolbar, | * For each profile, you get a name and customizable icon in the top-right of the toolbar, SO NICE | ||
* Bookmarks etc. are all profile-specific, as expected | * Bookmarks etc. are all profile-specific, as expected | ||
* You can sync a profile across machines (see #Sync) | |||
==== Finding Profile folder ==== | ==== Finding Profile folder ==== | ||
This is a bit dicey as | You can start brave with a specific profile, like this: | ||
brave-browser --profile-directory='Profile 4'& | |||
This is a bit dicey as the folder you must provide does not actually match the profile name! I used this bit of ugliness to get a map of name to folder: | |||
💉 m@cast [~/.config/BraveSoftware/Brave-Browser] grep -Po "\"name\":\"[^\"]*?\",\"(pa|usi)" * -R | 💉 m@cast [~/.config/BraveSoftware/Brave-Browser] grep -Po "\"name\":\"[^\"]*?\",\"(pa|usi)" * -R | ||
Line 17: | Line 33: | ||
Profile 7/Preferences:"name":"ig-1","usi | Profile 7/Preferences:"name":"ig-1","usi | ||
=== | ==== Assign VSCode Launch to (re)use a Brave profile ==== | ||
When vscode starts its Javascript debugger, it uses a custom "user-data-dir" within its own config folder. This means you start with a clean profile upon first use. However, (after MUCH trial-and-horror), you can specify that it uses a precise profile within this custom user-data-dir. | |||
If you use a launch.json stanza like this, vscode will always use that specific profile. You can then start customizing the profile, and your changes will stick across debugging sessions. Awesome! | |||
"configurations": [ | |||
* | { | ||
"name": "Launch Brave", | |||
"runtimeExecutable": "/usr/bin/brave-browser", | |||
// NOTE: This directory will be within .code/Code/User; specifying it allows reuse of a specific Profile there, nice. | |||
"runtimeArgs": [ "--profile-directory=\"Profile 4\"" ], | |||
"type": "chrome", | |||
"request": "launch", | |||
"timeout": 5000, | |||
"url": "http://localhost:8008", | |||
"webRoot": "${workspaceFolder}/src" | |||
} | |||
] | |||
That should be all you need to get usage of a consistent profile across sessions. But... say you want to sync it across development environments... why not! Read on... | |||
===== More Details ===== | |||
Again, we dig to get a map of profile names to folders. First, run the debugger, and look for the process and params: | |||
ps ax|grep -Po brave.*config/Code/User/workspaceStorage/.*?profile | |||
From that, you can extract a user-data-dir: | |||
--user-data-dir=/home/m/development/config/common/home/m/.config/Code/User/workspaceStorage/436f0a4c50203656e625d634df9e0ca9/ms-vscode.js-debug/.profile | |||
NOTE that it seems that each vscode project has its own workspaceStorage! Which is pretty crazy. That means every dev project can have its own set of profiles. | |||
From the user-data-dir folder, you can get a map of profile name to folder: | |||
cd #your-user-data-dir# | |||
grep -Po "\"name\":\"[^\"]*?\",\"(pa|usi)" * -R | |||
"Profile 4"/Preferences:"name":"es-2","usi | |||
Now that you know what is where.... Just like with "normal" profiles, you can sync them across machines. | |||
=== Set up sync === | === Set up sync === | ||
Line 30: | Line 72: | ||
* Make sure Sync everything is toggled ON | * Make sure Sync everything is toggled ON | ||
* You can now paste this chain into another computer to sync this profile there | * You can now paste this chain into another computer to sync this profile there | ||
== Backup == | |||
Synced brave profiles are so valuable! So much so that you might want to back up the data. | |||
This includes three major chunks of data, but you can only export two: | |||
* Export passwords to a safe place, from here: | |||
Settings > Autofill and passwords > Password Manager > (left pane) Settings > Export passwords | |||
* Export bookmarks from here: | |||
Main Menu (top-right hamburger) > Bookmarks > Bookmars Manager > More (top-right ...) > Export | |||
* Autofill (Payment methods, Addresses) | |||
Settings > Autofill and passwords > Payment methods, Addresses (view-only, no export) | |||
== [https://brave.com/linux/ Install] == | == [https://brave.com/linux/ Install] == | ||
Line 37: | Line 90: | ||
sudo apt update | sudo apt update | ||
sudo apt install brave-browser | sudo apt install brave-browser | ||
One annoying thing... the apt file searches all architectures and you'll get i386 errors, until you add "arch=amd64" like this: | |||
sudo emacs /etc/apt/sources.list.d/brave-browser-release.list | |||
deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main | |||
== Troubleshooting == | |||
=== Profiles === | |||
At one point, maybe after a crash, my profiles stopped fully loading. Passwords and history were not getting loaded. I updated my system and rebooted and after a day or two of suffering they just came back on a reboot. GOOD LORD I need them! So... back them up... |
Latest revision as of 18:50, 24 September 2024
Configure
Settings
Immediately change these Settings on any new profile:
- Get started > Profile name and icon > customize it!
- Get started > New Tab Page > shows > Homepage
- Appearance > Toolbar > Show home button ON, set to bitpost.com
- Appearance > Toolbar > Brave Rewards, Brave Wallet, Sidebar > OFF
- Appearance > Toolbar > Show wide address bar, show full urls > ON
- Appearance > Sidebar > Show: never
- (NO) Appearance > Content > (very bottom) Cycle through the most recently used tabs with Ctrl-Tab
- Sync > I have a chain > paste, toggle Sync everything ON
TODO: consider playing with vertical tabs! It's a mindfuck tho...
Profiles
Profiles in Brave are AWESOME:
- Brave seems to remember what desktop the windows were on!!! FINALLY
- For each profile, you get a name and customizable icon in the top-right of the toolbar, SO NICE
- Bookmarks etc. are all profile-specific, as expected
- You can sync a profile across machines (see #Sync)
Finding Profile folder
You can start brave with a specific profile, like this:
brave-browser --profile-directory='Profile 4'&
This is a bit dicey as the folder you must provide does not actually match the profile name! I used this bit of ugliness to get a map of name to folder:
💉 m@cast [~/.config/BraveSoftware/Brave-Browser] grep -Po "\"name\":\"[^\"]*?\",\"(pa|usi)" * -R Default/Preferences:"name":"moodboom","pa Profile 4/Preferences:"name":"es-1","pa Profile 5/Preferences:"name":"mdmdev-1","pa Profile 6/Preferences:"name":"Profile 2","pa Profile 7/Preferences:"name":"ig-1","usi
Assign VSCode Launch to (re)use a Brave profile
When vscode starts its Javascript debugger, it uses a custom "user-data-dir" within its own config folder. This means you start with a clean profile upon first use. However, (after MUCH trial-and-horror), you can specify that it uses a precise profile within this custom user-data-dir.
If you use a launch.json stanza like this, vscode will always use that specific profile. You can then start customizing the profile, and your changes will stick across debugging sessions. Awesome!
"configurations": [ { "name": "Launch Brave", "runtimeExecutable": "/usr/bin/brave-browser", // NOTE: This directory will be within .code/Code/User; specifying it allows reuse of a specific Profile there, nice. "runtimeArgs": [ "--profile-directory=\"Profile 4\"" ], "type": "chrome", "request": "launch", "timeout": 5000, "url": "http://localhost:8008", "webRoot": "${workspaceFolder}/src" } ]
That should be all you need to get usage of a consistent profile across sessions. But... say you want to sync it across development environments... why not! Read on...
More Details
Again, we dig to get a map of profile names to folders. First, run the debugger, and look for the process and params:
ps ax|grep -Po brave.*config/Code/User/workspaceStorage/.*?profile
From that, you can extract a user-data-dir:
--user-data-dir=/home/m/development/config/common/home/m/.config/Code/User/workspaceStorage/436f0a4c50203656e625d634df9e0ca9/ms-vscode.js-debug/.profile
NOTE that it seems that each vscode project has its own workspaceStorage! Which is pretty crazy. That means every dev project can have its own set of profiles.
From the user-data-dir folder, you can get a map of profile name to folder:
cd #your-user-data-dir# grep -Po "\"name\":\"[^\"]*?\",\"(pa|usi)" * -R "Profile 4"/Preferences:"name":"es-2","usi
Now that you know what is where.... Just like with "normal" profiles, you can sync them across machines.
Set up sync
Do this for each profile:
- Settings > Sync > Start a new Sync Chain > Computer > copy Sync Chain Code > save in private
- Make sure Sync everything is toggled ON
- You can now paste this chain into another computer to sync this profile there
Backup
Synced brave profiles are so valuable! So much so that you might want to back up the data.
This includes three major chunks of data, but you can only export two:
- Export passwords to a safe place, from here:
Settings > Autofill and passwords > Password Manager > (left pane) Settings > Export passwords
- Export bookmarks from here:
Main Menu (top-right hamburger) > Bookmarks > Bookmars Manager > More (top-right ...) > Export
- Autofill (Payment methods, Addresses)
Settings > Autofill and passwords > Payment methods, Addresses (view-only, no export)
Install
Copy and paste this all in one shot!
sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list sudo apt update sudo apt install brave-browser
One annoying thing... the apt file searches all architectures and you'll get i386 errors, until you add "arch=amd64" like this:
sudo emacs /etc/apt/sources.list.d/brave-browser-release.list deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main
Troubleshooting
Profiles
At one point, maybe after a crash, my profiles stopped fully loading. Passwords and history were not getting loaded. I updated my system and rebooted and after a day or two of suffering they just came back on a reboot. GOOD LORD I need them! So... back them up...