Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add info on loading a font file to vt(4) #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ cc -o fontpic gpl/fontpic.c
./fontpic < vt-default-normal.hex > vt-default-normal.bmp
```

To load a font file into vt(4):
(setfont is included in vidcontrol. See [this commit](https://cgit.freebsd.org/src/commit/?id=44581368a4aabc5a442e2a9c5333828a3b69d69d))
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we need to mention setfont here as it was removed around 10 years ago; is there any documentation that makes reference to it?

```sh
vtfontcvt -o vt-default-normal.bin vt-default-normal.hex
vidcontrol -f vt-default-normal.bin
```

Links
=====
* http://czyborra.com/unifont/ (Original GNU Unifont home)
Expand Down