~/.config/sshyp is now auto-generated

This commit is contained in:
2022-01-13 02:56:34 -05:00
parent b24bcdd413
commit d26c2a5e08
+5 -1
View File
@@ -47,11 +47,15 @@ def edit_note(_shm_folder, _shm_entry):
def tweak(): # runs configuration wizard
# storage directory creation
# storage/config directory creation
try:
mkdir(f"{path.expanduser('~')}/.password-pasture", 0o700)
except FileExistsError:
pass
try:
mkdir(path.expanduser('~/.config/sshyp'), 0o700)
except FileExistsError:
pass
# device type configuration
_device_type = input('\nIs this installation for a client or for a server? (C/s) ')