From 59d80b5265d5aa88e633db31d68244c294ebfdd8 Mon Sep 17 00:00:00 2001 From: David <10271265+cybercitizen7@users.noreply.github.com> Date: Thu, 7 Nov 2024 15:46:16 +0100 Subject: [PATCH 1/2] Update technical.md Added a new header 3 section for Migration instructions. Added Orion Migration Tool as an option to migrate from Orion production to Orion RC version on MacOS --- docs/orion/misc/technical.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/orion/misc/technical.md b/docs/orion/misc/technical.md index 733f6b8d..8be76019 100644 --- a/docs/orion/misc/technical.md +++ b/docs/orion/misc/technical.md @@ -103,10 +103,6 @@ Backup Bookmarks to your user folder cp ~/Library/Application\ Support/Orion/Defaults/favourites.plist ~/ ``` -Copy Orion settings from one Mac to another -> Copy ~/Library/Preferences/com.kagi.kagimacOS.plist to the same location on another Mac. - - Parse Reading List as json and print all URLs ``` plutil -convert json -o - ~/Library/Application\ Support/Orion/Defaults/reading_list.plist | jq -r '.[].url.relative' @@ -125,6 +121,15 @@ And here's a one-liner that will let you fuzzy search your history using fzf ``` sqlite3 ~/Library/Application\ Support/Orion/Defaults/history 'SELECT DISTINCT url FROM history_items' | fzf --ansi --multi | sed 's#.*\(https*://\)#\1#' | xargs open ``` +### Migrating Settings and Data of Orion Browser + +Copy Orion settings from one Mac to another +> Copy ~/Library/Preferences/com.kagi.kagimacOS.plist to the same location on another Mac. + +Tool for migrating Orion (production) settings and data to Orion RC + +[Orion Migration Tool](https://github.com/cybercitizen7/orion-migration) + ### Syncing settings to Orion RC (Release Candidate) If you are just getting started with Orion RC and would like to copy over your settings/configuration, you can use this command: From a4e72d16c735c952bbb9796ac82630c22be0dff9 Mon Sep 17 00:00:00 2001 From: David <10271265+cybercitizen7@users.noreply.github.com> Date: Thu, 7 Nov 2024 15:53:52 +0100 Subject: [PATCH 2/2] Update technical.md re-organizing headers a bit, to join commands which are similar in purpose to joint heading. --- docs/orion/misc/technical.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/docs/orion/misc/technical.md b/docs/orion/misc/technical.md index 8be76019..d54f67de 100644 --- a/docs/orion/misc/technical.md +++ b/docs/orion/misc/technical.md @@ -121,22 +121,21 @@ And here's a one-liner that will let you fuzzy search your history using fzf ``` sqlite3 ~/Library/Application\ Support/Orion/Defaults/history 'SELECT DISTINCT url FROM history_items' | fzf --ansi --multi | sed 's#.*\(https*://\)#\1#' | xargs open ``` -### Migrating Settings and Data of Orion Browser +### Migrating and Syncing Settings and Data of Orion Browser Copy Orion settings from one Mac to another > Copy ~/Library/Preferences/com.kagi.kagimacOS.plist to the same location on another Mac. -Tool for migrating Orion (production) settings and data to Orion RC - -[Orion Migration Tool](https://github.com/cybercitizen7/orion-migration) - - -### Syncing settings to Orion RC (Release Candidate) If you are just getting started with Orion RC and would like to copy over your settings/configuration, you can use this command: ``` cp -r ~/Library/Application\ Support/Orion ~/Library/Application\ Support/Orion\ RC ``` +If the above command does not import all of your data (profiles, extensions, etc.), try using the following tool: + +[Tool to migrate Orion settings and data to Orion RC](https://github.com/cybercitizen7/orion-migration) + + ### Change start page wallpaper to custom image To change to a custom wallpaper run this command with correct path to picture you want to change it to ```