Skip to content

Commit 4923fb8

Browse files
committed
[+] password management
1 parent 4671193 commit 4923fb8

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

setup

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,21 @@ if [[ $CFG == "Y" || $CFG == "y" ]]; then
8383
# cp -R .z* ~/
8484
fi
8585

86+
### pwd migration ###
87+
#### old machine ####
88+
pass-push
89+
mkdir ~/exported-keys
90+
cd ~/exported-keys
91+
gpg-pub-out # gpg --output public.pgp --armor --export [email protected]
92+
gpg-pvt-out # gpg --output private.pgp --armor --export-secret-key [email protected]
93+
#### new machine ####
94+
gh repo clone Pheon-Dev/pwd-store .password-store
95+
#### copy exported keys directory from old machine ####
96+
cp -r /mnt/path/exported-keys ~/
97+
cd ~/exported-keys
98+
gpg-pvt-import # gpg --import private.pgp
99+
gpg-pub-import # gpg --import public.pgp
100+
86101
Create a file /etc/X11/xorg.conf.d/30-touchpad.conf that contains this:
87102

88103
Section "InputClass"

0 commit comments

Comments
 (0)