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