Last active
July 14, 2025 18:03
-
-
Save mcritchlow/9688feaeedc9a6a0763a87a494c656b5 to your computer and use it in GitHub Desktop.
Install terminus as console font for Solus
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install terminus console fonts (only) | |
wget https://sourceforge.net/projects/terminus-font/files/terminus-font-4.46/terminus-font-4.46.tar.gz/download -O terminus.tar.gz | |
tar -xvf terminus.tar.gz | |
cd terminus-font-4.46 | |
./configure --prefix=/usr | |
make -j4 psf | |
sudo make install-psf | |
# add kernel parameter for vconsole.font | |
echo 'vconsole.font=ter-v32n' | sudo tee /etc/kernel/cmdline | |
# append kernel parameter to boot | |
sudo clr-boot-manager update | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment