From fa544f4f22ba74bcaf66ba589919d6812f6f51d6 Mon Sep 17 00:00:00 2001 From: pedro Date: Thu, 29 Feb 2024 12:59:27 +0100 Subject: [PATCH] status: better format --- status.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/status.sh b/status.sh index bea9c3e..dbb7749 100755 --- a/status.sh +++ b/status.sh @@ -24,7 +24,7 @@ main() { commit_info="$(git log --pretty=format:'[%ci] %h %an: %s' -n 1)" cd - >/dev/null d_name="$(basename "${d}")" - printf " - %-30s commit: %s\n" "${d_name}" "${commit_info}" + printf " - %-25s | commit: %s\n" "${d_name}" "${commit_info}" done done }