├── .gitignore ├── LICENSE ├── README.org ├── dist └── autonoe-003.tar.gz └── pub ├── ascii.png └── term.png /.gitignore: -------------------------------------------------------------------------------- 1 | .hg/ 2 | .hgignore 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | (c) 2016-2021, agaric 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- 1 | * autonoe 2 | 3 | *** get 4 | 5 | - download :: [[/dist/autonoe-003.tar.gz][autonoe, version 003]] 6 | 7 | - files :: The download link gets you a tarballed /autonoe/. It contains a =.bdf=, a =.sfd=, and a =.pcf.gz= file. The first two are "source" files that you can modify and compile to your liking. The last is the actual font file that you'll want to install, assuming you're in an [[http://www.x.org/wiki/][X.Org]] environment. 8 | 9 | - original -misc-fixed-* fonts :: [[https://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html]] 10 | 11 | *** status 12 | 13 | No longer maintained. 14 | 15 | *** about 16 | 17 | /autonoe/ is a fixed-width, 7x14, bold-only, unicode, bitmap typeface. 18 | 19 | Furthermore, the font ...: 20 | 21 | - Has an [[http://en.wikipedia.org/wiki/X_logical_font_description][xlfd]] of =-agaric-autonoe-bold-r-normal--14-100-96-96-m-70-iso10646-1=. 22 | - Is basically =fixed-7x14b= with a few modifications. 23 | - Primarily targets shell use. 24 | - Is named after the Bacchic mythological character, whose sister, Agave, happens to share a name with [[https://github.com/blobject/agave][a font I started designing earlier]]. Besides the name, there is no relation between the two fonts. I like superficial coherence, that's all. 25 | 26 | *** preview 27 | 28 | *terminal*, sampling =uname= and =lua=: 29 | 30 | [[/pub/term.png]] 31 | 32 | *glyph distinction*, in ASCII: 33 | 34 | [[/pub/ascii.png]] 35 | 36 | *** thanks 37 | 38 | ... to the persons behind [[https://fontforge.github.io][FontForge]], [[http://www.math.nmsu.edu/~mleisher/Software/gbdfed/][gbdfed]], and [[https://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html][ucs fonts]] for making this project possible. 39 | -------------------------------------------------------------------------------- /dist/autonoe-003.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blobject/autonoe/86cd27cb15ddd0289385b978b51ff803a9396107/dist/autonoe-003.tar.gz -------------------------------------------------------------------------------- /pub/ascii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blobject/autonoe/86cd27cb15ddd0289385b978b51ff803a9396107/pub/ascii.png -------------------------------------------------------------------------------- /pub/term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blobject/autonoe/86cd27cb15ddd0289385b978b51ff803a9396107/pub/term.png --------------------------------------------------------------------------------