From 968a7322f85c5616e4561635970103e821f80409 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Thu, 19 May 2022 16:55:20 -0400 Subject: [PATCH] Changed shade of gray used in entry list to be more neutral --- bin/sshyp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/sshyp b/bin/sshyp index eaec390..9a32ac1 100755 --- a/bin/sshyp +++ b/bin/sshyp @@ -26,7 +26,7 @@ def entry_list_gen(): # generates and prints a list of all folders and entries else: _entry_list.append(f"\u001b[38;5;8m{_entry.replace('.gpg', '')}\u001b[0m") _color_alternator = 1 - _real = len(' '.join(_entry_list)) - (6.5 * len(_entry_list)) + _real = len(' '.join(_entry_list)) - (5.5 * len(_entry_list)) if _real <= get_terminal_size()[0]: _width = len(' '.join(_entry_list)) else: @@ -48,7 +48,7 @@ def entry_list_gen(): # generates and prints a list of all folders and entries else: _entry_list.append(f"\u001b[38;5;8m{_entry.replace('.gpg', '')}\u001b[0m") _color_alternator = 1 - _real = len(' '.join(_entry_list)) - (6.5 * len(_entry_list)) + _real = len(' '.join(_entry_list)) - (5.5 * len(_entry_list)) if _real <= get_terminal_size()[0]: _width = len(' '.join(_entry_list)) else: