Merge branch 'arch' into gentoo

This commit is contained in:
ItsDrike 2021-08-19 13:34:31 +02:00
commit 29b9022a24
No known key found for this signature in database
GPG key ID: B5F6B41F708C3ADD

View file

@ -122,7 +122,9 @@ text_handle() {
# Handle all other formats as text and cat them
# if highlighting tools are aviable, try to use them
if command -v bat > /dev/null; then
bat -pp --color=always "$1"
num=$(printf "%0.f\n" "`echo "$(tput cols) / 2" | bc`")
numb=$(printf "%d\n" "`echo "$(tput cols) - $num - 3" | bc`")
bat -pp --color=always --wrap=character --terminal-width="$numb" "$1"
elif command -v highlight > /dev/null; then
highlight "$1" --out-format ansi --force
else