zsh: functions: add 'bold' function to print bold text

fix-ci
bretello 2023-12-21 16:13:48 +01:00
parent 353378af8c
commit 58393456a9
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 4 additions and 0 deletions

View File

@ -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