migrate-atom-to-pulsar.sh
· 458 B · Bash
原始檔案
#! /usr/bin/env bash
# NOTE: This worked for my migration from Pop!_OS 22.04 Atom 1.63.1 which was installed with flatpak (user)
# First, download and install the deb package found here https://pulsar-edit.dev/download.html
# for flatpak Atom migration to Pulsar deb - copy configuration and packages
rsync -av ~/.var/app/io.atom.Atom/data/ ~/.pulsar/
# for deb Atom migration to Pulsar deb - copy configuration and packages
#rsync -av ~/.atom/ ~/.pulsar/
| 1 | #! /usr/bin/env bash |
| 2 | # NOTE: This worked for my migration from Pop!_OS 22.04 Atom 1.63.1 which was installed with flatpak (user) |
| 3 | |
| 4 | # First, download and install the deb package found here https://pulsar-edit.dev/download.html |
| 5 | |
| 6 | # for flatpak Atom migration to Pulsar deb - copy configuration and packages |
| 7 | rsync -av ~/.var/app/io.atom.Atom/data/ ~/.pulsar/ |
| 8 | |
| 9 | # for deb Atom migration to Pulsar deb - copy configuration and packages |
| 10 | #rsync -av ~/.atom/ ~/.pulsar/ |