From 58393456a9008c274f53743b95eb7d480364b8fe Mon Sep 17 00:00:00 2001 From: bretello Date: Thu, 21 Dec 2023 16:13:48 +0100 Subject: [PATCH] zsh: functions: add 'bold' function to print bold text --- functions/misc.zsh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/functions/misc.zsh b/functions/misc.zsh index ec75d89..5c25e1b 100755 --- a/functions/misc.zsh +++ b/functions/misc.zsh @@ -72,6 +72,10 @@ function blue { echo -e "$Blue$@$CLEAR" } +function bold +{ + echo -e "$BOLD$@$CLEAR" +} ## Flashes the screen until user presses a key function flasher