migrate-atom-deb-to-user-flatpak.sh
· 362 B · Bash
Raw
#! /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/
| 1 | #! /bin/bash |
| 2 | |
| 3 | # global config |
| 4 | cp -f ~/.atom/config.cson ~/.var/app/io.atom.Atom/data/ |
| 5 | # keybindings |
| 6 | cp -f ~/.atom/keymap.cson ~/.var/app/io.atom.Atom/data/ |
| 7 | # init script (maybe you defined some custom function and then bound to a key combo?) |
| 8 | cp -f ~/.atom/init.coffee ~/.var/app/io.atom.Atom/data/ |
| 9 | # packages |
| 10 | cp -rf ~/.atom/packages ~/.var/app/io.atom.Atom/data/ |