This was taken from the Ubuntu Mate website. I've never seen this output and I'm wondering what produced it?
neofetch - found it right after I posted.
Follow-up to my query in another post.
Customized output from neofetch.
Script I created to get the look I wanted:
#!/bin/sh
neofetch --gtk3 on --colors 2 3 3 3 3 3 3 3 2>&1 >neofetch.OUTPUT.tmp.txt
head -20 neofetch.OUTPUT.tmp.txt |
sed 's+\e\[37m\e\[0m\e\[1m+⊞+g' |
sed 's+\e\[0m\e\[31m\e\[1m+⊟+g' |
sed 's+\e\[0m+⊠+g' |
sed 's+dm+⬤⬤+g' |
sed 's+hm+⬤⬤+g' |
sed 's+Nm+⬤⬤+g' |
sed 's+mmm+⬤⬤⬤+g' |
sed 's+mm+⬤⬤+g' |
sed 's+[sohdmyMN]+⬤+g' |
sed 's+[-:./]+⬤+g' |
sed 's+[`]+⬤+g' |
sed 's+\++⬤+g' 2>&1 |
sed 's+⊠+\e\[0m+g' |
sed 's+⊞+\e\[0m\e\[37m+g' |
sed 's+⊟+\e\[0m\e\[31m+g' |
sed 's+\[31m+\[38;2;0;63;0m+g' |
sed 's+\[37m+[38;2;0;0;0m+g' 2>&1 |
sed 's+^ ⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤+ ⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤\
⬤⬤⬤⬤+' |
sed 's+\;0m ⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤+\;0m ⬤⬤⬤⬤\
⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤⬤+' >neofetch.OUTPUT.top.txt
tail -n +21 neofetch.OUTPUT.tmp.txt |
head -14 |
sed 's+e\[33me\[1m+e\[93me\[1m+g' |
sed 's+e\[0me\[33m+e\[38;2;0;191;1me\[1m+g' >neofetch.OUTPUT.mid.txt
{
echo ""
cat neofetch.OUTPUT.top.txt | sed 's+^+e\[6C+'
cat neofetch.OUTPUT.mid.txt | sed 's+e\[43C+e\[52C+'
tail -n +35 neofetch.OUTPUT.tmp.txt | sed 's+e\[43C+e\[52C+'
} >neofetch.OUTPUT.txt
rm -f neofetch.OUTPUT.top.txt neofetch.OUTPUT.mid.txti
#rm -i neofetch.OUTPUT.tmp.txt
cat neofetch.OUTPUT.txt
exit
⊞⊟⊠⊡
@◉⨂⬤🌑⚪
# Ubuntu FONT Character - Ubuntu Logo with roundel:
# Ubuntu FONT Character - Ubuntu roundel:
I don't like the look of pictures made from letters and punctuation. I prefer using the largest filled circle I could locate.
The script also adds the top and bottom row on the logo, as well as shift everything over to the right, away from the terminal border.
When I located the large circle, it seemed larger in the Character Map tool, but when I use it, it seems smaller, about 2/3 the size. Not sure why that is.
Good to know it's not just me. I had the same result.