Add files via upload

This commit is contained in:
kneutron 2022-06-05 21:46:59 -05:00 committed by GitHub
parent 06f92c4460
commit 44116120d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
fix-console-resolution.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/bash
# Run from tty1 or similar
# Good for VMs on 1920x1080 monitors
# sets the text console / tty to have more cols/lines
# helpful with topscrn4-10
# REQUIRES fbset
# REF: https://www.reddit.com/r/linuxadmin/comments/sefh94/cant_change_console_resolution/
[ -e /bin/fbset ] || apt-get -y install fbset
fbset -xres 1440 -yres 900