fetch

[sh] MSYS2-compatible system info prompt
git clone https://git.torresjrjr.com/fetch.git
Log | Files | Refs | README | LICENSE

commit d798833f7d84f34b89db70735ee5a842db4e9e3f
parent 4d48e12b2c9a7c353f9f7f4aaa2fa0fad44f19e8
Author: Byron Torres <b@torresjrjr.com>
Date:   Fri,  3 Mar 2023 01:45:15 +0000

Improve graphic()

Diffstat:
Mfetch | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/fetch b/fetch @@ -18,13 +18,15 @@ main() { ## Graphic graphic() { - env printf "$c6%s\n" \ + env printf "$c6" + env printf '%s\n' \ ' ~ ' \ ' .-. ' \ ' /`v`\ ' \ ' (/ \) ' \ '====="="===< ' \ ' |_| ' + env printf "$c0" }