Views:
5,732
Votes: 7
✅ Solution
Tags:
fonts
tty
Link:
🔍 See Original Answer on Ask Ubuntu ⧉ 🔗
URL:
https://askubuntu.com/q/1148410
Title:
How can I double the tty font size on a 3840x2160 monitor?
ID:
/2019/06/04/How-can-I-double-the-tty-font-size-on-a-3840x2160-monitor_
Created:
June 4, 2019
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
My eyes almost literally got sick and tired of the tiny fonts on Full HD and now 4K screens when I had to log onto the console periodically.
I put the following into my ~/.bashrc
and my problems went away:
# Set font when running in console
if [ $TERM == linux ]; then
/bin/setfont /usr/share/consolefonts/Lat2-Terminus32x16.psf.gz
fi