Fixed wrong order
This commit is contained in:
parent
a98d96eb8c
commit
7023a37658
4
neofetch
4
neofetch
|
@ -2208,10 +2208,10 @@ getimage () {
|
|||
|
||||
# Calculate font size
|
||||
if [ "$os" == "Mac OS X" ]; then
|
||||
font_width=$((term_width / columns))
|
||||
font_width=$((term_width / columns / 2))
|
||||
else
|
||||
# Fixes padding issues in iTerm2.
|
||||
font_width=$((term_width / columns / 2))
|
||||
font_width=$((term_width / columns))
|
||||
fi
|
||||
|
||||
# Image size is half of the terminal
|
||||
|
|
Reference in New Issue