How would I go about making everything bold? #223
-
I am sorry if you have answered this question before but I was using ble.sh and I was looking at how to configure the .blerc file and I got quickly confused on how I would go about making all of the text bold thank you. |
Beta Was this translation helpful? Give feedback.
Answered by
akinomyoga
Aug 28, 2022
Replies: 1 comment 2 replies
-
There is no single option to achieve that, but you need to add eval "$(ble-face | sed 's/$/,bold/')" Edit: this is an improved version (see also #223 (reply in thread)): # blerc
eval "$(ble-face | sed -En '/=ref:|(^|,)bold(,|$)/!s/$/,bold/p')" |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
KorbinH
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is no single option to achieve that, but you need to add
bold
to all the faces listed by the commandble-face
. I haven't carefully tested it, but maybe you can just modify the output ofble-face
to addbold
and then evaluate it byeval
:Edit: this is an improved version (see also #223 (reply in thread)):