From 44116120d94784b7888fd2332de183b3257264eb Mon Sep 17 00:00:00 2001 From: kneutron <50146127+kneutron@users.noreply.github.com> Date: Sun, 5 Jun 2022 21:46:59 -0500 Subject: [PATCH] Add files via upload --- fix-console-resolution.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 fix-console-resolution.sh diff --git a/fix-console-resolution.sh b/fix-console-resolution.sh new file mode 100644 index 0000000..919d781 --- /dev/null +++ b/fix-console-resolution.sh @@ -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