Created
May 31, 2022 16:25
-
-
Save curiousercreative/d35445be63f55edd7ba204890a705876 to your computer and use it in GitHub Desktop.
Rough script for migrating common settings from your .deb Atom to user-specific flatpak Atom (Pop!_OS 22.04 tested)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# global config | |
cp -f ~/.atom/config.cson ~/.var/app/io.atom.Atom/data/ | |
# keybindings | |
cp -f ~/.atom/keymap.cson ~/.var/app/io.atom.Atom/data/ | |
# init script (maybe you defined some custom function and then bound to a key combo?) | |
cp -f ~/.atom/init.coffee ~/.var/app/io.atom.Atom/data/ | |
# packages | |
cp -rf ~/.atom/packages ~/.var/app/io.atom.Atom/data/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment