├── FantasqueSansMono-BoldItalic.ttf+Powerline+Awesome.ttf ├── FantasqueSansMono-RegItalic.ttf+Powerline+Awesome.ttf ├── FantasqueSansMono-Regular.ttf+Powerline+Awesome.ttf ├── README.md └── fantasque.sh /FantasqueSansMono-BoldItalic.ttf+Powerline+Awesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztomer/fantasque_awesome_powerline/68a109f22bc3997a6c36426df0fdde33f230c792/FantasqueSansMono-BoldItalic.ttf+Powerline+Awesome.ttf -------------------------------------------------------------------------------- /FantasqueSansMono-RegItalic.ttf+Powerline+Awesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztomer/fantasque_awesome_powerline/68a109f22bc3997a6c36426df0fdde33f230c792/FantasqueSansMono-RegItalic.ttf+Powerline+Awesome.ttf -------------------------------------------------------------------------------- /FantasqueSansMono-Regular.ttf+Powerline+Awesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztomer/fantasque_awesome_powerline/68a109f22bc3997a6c36426df0fdde33f230c792/FantasqueSansMono-Regular.ttf+Powerline+Awesome.ttf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # fantasque_awesome_powerline 2 | 3 | Patched version of fantasque mono sans by belluz 4 | https://github.com/belluzj/fantasque-sans 5 | with fonts awesome+powerline by Gabriele Lana 6 | https://github.com/gabrielelana/awesome-terminal-fonts 7 | 8 | fantasque.sh is used to patch the files from the command line from awesome-terminal-fonts root directory 9 | 10 | Tested on OSX Yosemite, patching is not required on Linux. 11 | 12 | Have fun! 13 | -------------------------------------------------------------------------------- /fantasque.sh: -------------------------------------------------------------------------------- 1 | #!/bin/zsh 2 | fonts=('FantasqueSansMono-BoldItalic.ttf' 'FantasqueSansMono-RegItalic.ttf' 'FantasqueSansMono-Regular.ttf') 3 | fonts_dir='./fonts/' 4 | 5 | for font in $fonts; do 6 | 7 | echo patching font: ${fonts_dir}${font} 8 | 9 | cp ${fonts_dir}${font} S0.ttf 10 | ./patch S0.ttf --symbols=./fonts/fontawesome-webfont.ttf --to-namespace=AWESOME --rename-as=S1 --starting-at='0xe100' --ratio=0.8 --shift-x=100 --shift-y=50 11 | ./patch S1.ttf --symbols=./fonts/octicons-regular.ttf --to-namespace=OCTICONS --rename-as=S2 --starting-at='0xe800' --ratio=0.8 --shift-y=25 12 | ./patch S2.ttf --symbols=./fonts/pomicons-regular.ttf --to-namespace=POMICONS --rename-as=${font}'+Powerline+Awesome' --starting-at='0xf000' --ratio=0.75 --shift-x=-100 --shift-y=25 13 | cat S1.sh S2.sh >>${font}+Powerline+Awesome.sh 14 | cp ${font}+Powerline+Awesome.* ~/.fonts 15 | mv ${font}+Powerline+Awesome.* ./patched 16 | sudo fc-cache -rv 17 | rm -rf S?.* 18 | 19 | done 20 | 21 | 22 | --------------------------------------------------------------------------------