diff --git a/bin/sshyp b/bin/sshyp index 2f9fe55..5edf98e 100755 --- a/bin/sshyp +++ b/bin/sshyp @@ -29,7 +29,7 @@ def entry_list_gen(): # generates and prints a list of all folders and entries if _real <= get_terminal_size()[0]: _width = len(' '.join(_entry_list)) else: - _width = (len(' '.join(_entry_list)) / (_real / get_terminal_size()[0]) - 25) + _width = (len(' '.join(_entry_list)) / (_real / get_terminal_size()[0]) - 50) print(fill(' '.join(_entry_list), width=_width)) for _root, _directories, _files in walk(path.expanduser('~/.password-pasture')): for _dir in _directories: @@ -48,7 +48,7 @@ def entry_list_gen(): # generates and prints a list of all folders and entries if _real <= get_terminal_size()[0]: _width = len(' '.join(_entry_list)) else: - _width = (len(' '.join(_entry_list))/(_real/get_terminal_size()[0]) - 25) + _width = (len(' '.join(_entry_list))/(_real/get_terminal_size()[0]) - 50) print(fill(' '.join(_entry_list), width=_width))