Halve font width on iTerm2
This commit is contained in:
parent
bd070d5059
commit
a98d96eb8c
5
neofetch
5
neofetch
|
@ -2207,7 +2207,12 @@ getimage () {
|
|||
columns=$(tput cols)
|
||||
|
||||
# Calculate font size
|
||||
if [ "$os" == "Mac OS X" ]; then
|
||||
font_width=$((term_width / columns))
|
||||
else
|
||||
# Fixes padding issues in iTerm2.
|
||||
font_width=$((term_width / columns / 2))
|
||||
fi
|
||||
|
||||
# Image size is half of the terminal
|
||||
case "$image_size" in
|
||||
|
|
Reference in New Issue