Skip to content
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

Update technical.md #588

Merged
merged 2 commits into from
Nov 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions docs/orion/misc/technical.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -125,13 +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 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.

### 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
```
Expand Down
Loading