diff --git a/bin/sshyp b/bin/sshyp index 8885827..4c63743 100755 --- a/bin/sshyp +++ b/bin/sshyp @@ -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) ')